eapol/eapol_framework/eapol_symbian/am/type/protected_setup/EapProtectedSetupInterface.cpp
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
    14 * Description:  EAP and WLAN authentication protocols.
    14 * Description:  EAP and WLAN authentication protocols.
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 /*
    18 /*
    19 * %version: 6.1.2 %
    19 * %version: 8 %
    20 */
    20 */
    21 
    21 
    22 // This is enumeration of EAPOL source code.
    22 // This is enumeration of EAPOL source code.
    23 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
    23 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
    24 	#undef EAP_FILE_NUMBER_ENUM
    24 	#undef EAP_FILE_NUMBER_ENUM
    34 #include <mmtsy_names.h>
    34 #include <mmtsy_names.h>
    35 #include <etelmmerr.h>
    35 #include <etelmmerr.h>
    36 
    36 
    37 // ================= MEMBER FUNCTIONS =======================
    37 // ================= MEMBER FUNCTIONS =======================
    38 
    38 
    39 CEapProtectedSetupInterface::CEapProtectedSetupInterface(abs_eap_am_tools_c* const aTools, CEapAmProtectedSetupSymbian* const aParent)
    39 CEapProtectedSetupInterface::CEapProtectedSetupInterface(abs_eap_am_tools_c* const aTools, eap_am_type_protected_setup_symbian_c* const aParent)
    40 : CActive(CActive::EPriorityStandard)
    40 : CActive(CActive::EPriorityStandard)
    41 , iParent(aParent)
    41 , iParent(aParent)
    42 , m_am_tools(aTools)
    42 , m_am_tools(aTools)
    43 , iQueryId(EQueryNone)
    43 , iQueryId(EQueryNone)
    44 , iMMETELConnectionStatus(EFalse)
    44 , iMMETELConnectionStatus(EFalse)
    48 }
    48 }
    49 
    49 
    50 //--------------------------------------------------
    50 //--------------------------------------------------
    51 
    51 
    52 CEapProtectedSetupInterface* CEapProtectedSetupInterface::NewL(abs_eap_am_tools_c* const aTools, 
    52 CEapProtectedSetupInterface* CEapProtectedSetupInterface::NewL(abs_eap_am_tools_c* const aTools, 
    53 											   CEapAmProtectedSetupSymbian* const aParent)
    53 											   eap_am_type_protected_setup_symbian_c* const aParent)
    54 {
    54 {
    55 	CEapProtectedSetupInterface* self = new(ELeave) CEapProtectedSetupInterface(aTools, aParent);
    55 	CEapProtectedSetupInterface* self = new(ELeave) CEapProtectedSetupInterface(aTools, aParent);
    56 	CleanupStack::PushL(self);
    56 	CleanupStack::PushL(self);
    57 	self->ConstructL();
    57 	self->ConstructL();
    58 	CleanupStack::Pop();
    58 	CleanupStack::Pop();