eapol/eapol_framework/eapol_common/core/eap_plugin_message_base.cpp
branchRCL_3
changeset 19 c74b3d9f6b9e
parent 18 bad0cc58d154
equal deleted inserted replaced
18:bad0cc58d154 19:c74b3d9f6b9e
     1 /*
       
     2 * Copyright (c) 2001-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 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:  virtual functions of EAP-plugin interface.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 3 %
       
    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 769 
       
    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_plugin_message_base.h"
       
    33 
       
    34 /**
       
    35  * The destructor of the eap_core class does nothing special.
       
    36  */
       
    37 EAP_FUNC_EXPORT  eap_plugin_message_base_c::~eap_plugin_message_base_c()
       
    38 {
       
    39 }
       
    40 
       
    41 /**
       
    42  * The constructor initializes member attributes.
       
    43  */
       
    44 EAP_FUNC_EXPORT eap_plugin_message_base_c::eap_plugin_message_base_c()
       
    45 {
       
    46 }
       
    47 
       
    48 //--------------------------------------------------
       
    49 // End.