accesssec_plat/wlan_eap_settings_ui_api/inc/EapGtcUi.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     1 /*
       
     2 * Copyright (c) 2001-2009 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 the License "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: Header file of EAP GTC settings UI
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef _EAPGTCUI_H_
       
    21 #define _EAPGTCUI_H_
       
    22 
       
    23 // INCLUDES
       
    24 #include <EapGtcUiConnection.h>
       
    25 #include <coecntrl.h>
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Main UI class definition
       
    32 */
       
    33 class CEapGtcUi : public CCoeControl
       
    34     {
       
    35     public: 
       
    36         /**
       
    37         * Destructor.
       
    38         */
       
    39         ~CEapGtcUi();
       
    40 
       
    41         /**
       
    42         * Two-phased constructor.
       
    43         */
       
    44         static CEapGtcUi* NewL( CEapGtcUiConnection* aConnection );
       
    45 
       
    46         TInt InvokeUiL();
       
    47 
       
    48     protected:
       
    49         /**
       
    50         * C++ default constructor.
       
    51         */
       
    52         CEapGtcUi( CEapGtcUiConnection* aConnection );
       
    53 
       
    54         void ConstructL();
       
    55 
       
    56     private:
       
    57         CEapGtcUiConnection* iConnection;
       
    58     };
       
    59 
       
    60 
       
    61 #endif // _EAPGTCUI_H_
       
    62 
       
    63 //  End of File