eapol/eapol_framework/eapol_common/core/eap_pac_store_message_base.cpp
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     1 /*
       
     2 * Copyright (c) 2001-2006 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:  EAP and WLAN authentication protocols.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: %
       
    20 */
       
    21 
       
    22 // This is enumeration of EAPOL source code.
       
    23 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
       
    24 	#undef EAP_FILE_NUMBER_ENUM
       
    25 	#define EAP_FILE_NUMBER_ENUM 765 
       
    26 	#undef EAP_FILE_NUMBER_DATE 
       
    27 	#define EAP_FILE_NUMBER_DATE 1127594498 
       
    28 #endif //#if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
       
    29 
       
    30 #include "eap_am_tools.h"
       
    31 #include "eap_am_export.h"
       
    32 #include "eap_pac_store_message_base.h"
       
    33 
       
    34 /**
       
    35  * The destructor of the eap_core class does nothing special.
       
    36  */
       
    37 EAP_FUNC_EXPORT  eap_pac_store_message_base_c::~eap_pac_store_message_base_c()
       
    38 {
       
    39 }
       
    40 
       
    41 /**
       
    42  * The constructor initializes member attributes using parameters passed to it.
       
    43  * @param tools is pointer to the tools class. @see abs_eap_am_tools_c.
       
    44  * @param partner is back pointer to object which created this object.
       
    45  * @param is_client_when_true indicates whether the network entity should act
       
    46  * as a client (true) or server (false), in terms of EAP-protocol
       
    47  * whether this network entity is EAP-supplicant (true) or EAP-authenticator (false).
       
    48  */
       
    49 EAP_FUNC_EXPORT eap_pac_store_message_base_c::eap_pac_store_message_base_c()
       
    50 {
       
    51 }
       
    52 
       
    53 //--------------------------------------------------
       
    54 // End.