wlanutilities/wlanlogin/ictsqtwrapper/inc/ictsqtwrapper_symbian.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 /*
       
     2 * Copyright (c) 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: Private symbian implementation of ICTS client interface wrapper 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef ICTSQTWRAPPERSYMBIAN_H
       
    19 #define ICTSQTWRAPPERSYMBIAN_H
       
    20 
       
    21 // System includes
       
    22 #include <ictsclientinterface.h>
       
    23 
       
    24 // User includes
       
    25 
       
    26 // Forward declarations
       
    27 
       
    28 // External data types
       
    29 
       
    30 // Constants
       
    31 
       
    32 // Class declaration
       
    33 class IctsWrapperPrivate: public MIctsObserver
       
    34 {
       
    35 
       
    36 public:
       
    37     
       
    38     IctsWrapperPrivate(int aIapId, int aNetId, IctsWrapper *aWrapper);
       
    39     
       
    40     ~IctsWrapperPrivate();
       
    41     
       
    42     void ConnectivityObserver( TIctsTestResult aResult, const TDesC& aString );
       
    43     
       
    44     void startConnectivityTest();
       
    45 
       
    46     void startPolling(int pollingTime, int pollingInterval);
       
    47     
       
    48     void stopPolling();
       
    49     
       
    50 private:
       
    51     
       
    52     IctsWrapper *q_ptr; //!< Pointer to public implementation
       
    53     
       
    54     CIctsClientInterface* iIct; //!< Pointer to ICTS client interface
       
    55 };
       
    56 
       
    57 #endif // ICTSQTWRAPPERSYMBIAN_H