wlanutilities/wlanqtutilities/wrapper/inc/wlanqtutilsconmonwrapperdisconnect_symbian.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2 * Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * Private implementation of wrapper for Symbian Connection Monitor
       
    16 * library's connection disconnect interface.
       
    17 */
       
    18 
       
    19 #ifndef WLANQTUTILSCONMONWRAPPERDISCONNECT_SYMBIAN_H
       
    20 #define WLANQTUTILSCONMONWRAPPERDISCONNECT_SYMBIAN_H
       
    21 
       
    22 // System includes
       
    23 
       
    24 #include <rconnmon.h>
       
    25 
       
    26 // User includes
       
    27 
       
    28 // Forward declarations
       
    29 
       
    30 class WlanQtUtilsConMonWrapper;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 // Class declaration
       
    37 
       
    38 class WlanQtUtilsConMonWrapperDisconnect
       
    39 {
       
    40 public:
       
    41 
       
    42     // Data types
       
    43 
       
    44     WlanQtUtilsConMonWrapperDisconnect(WlanQtUtilsConMonWrapper *wrapper);
       
    45 
       
    46     ~WlanQtUtilsConMonWrapperDisconnect();
       
    47 
       
    48     void DisconnectConnection(int iapId);
       
    49 
       
    50 protected:
       
    51 
       
    52 private:
       
    53 
       
    54 private: // data
       
    55     
       
    56     // Owned data
       
    57 
       
    58     RConnectionMonitor iMonitor; //!< Handle to Connection Monitor Server
       
    59     
       
    60     // Not owned data
       
    61 
       
    62     //! Public implementation to report progress to
       
    63     WlanQtUtilsConMonWrapper *q_ptr;
       
    64 
       
    65     // Friend classes
       
    66 };
       
    67 
       
    68 #endif // WLANQTUTILSCONMONWRAPPERDISCONNECT_SYMBIAN_H