eapol/eapol_framework/eapol_common/core/eap_pac_store_message_base.cpp
changeset 26 9abfd4f00d37
child 34 ad1f037f1ac2
equal deleted inserted replaced
25:e03a3db4489e 26:9abfd4f00d37
       
     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 #include "eap_am_tools.h"
       
    23 #include "eap_am_export.h"
       
    24 #include "eap_pac_store_message_base.h"
       
    25 
       
    26 /**
       
    27  * The destructor of the eap_core class does nothing special.
       
    28  */
       
    29 EAP_FUNC_EXPORT  eap_pac_store_message_base_c::~eap_pac_store_message_base_c()
       
    30 {
       
    31 }
       
    32 
       
    33 /**
       
    34  * The constructor initializes member attributes using parameters passed to it.
       
    35  * @param tools is pointer to the tools class. @see abs_eap_am_tools_c.
       
    36  * @param partner is back pointer to object which created this object.
       
    37  * @param is_client_when_true indicates whether the network entity should act
       
    38  * as a client (true) or server (false), in terms of EAP-protocol
       
    39  * whether this network entity is EAP-supplicant (true) or EAP-authenticator (false).
       
    40  */
       
    41 EAP_FUNC_EXPORT eap_pac_store_message_base_c::eap_pac_store_message_base_c()
       
    42 {
       
    43 }
       
    44 
       
    45 //--------------------------------------------------
       
    46 // End.