eapol/eapol_framework/eapol_common/include/abs_eapol_key_state_map.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     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 
       
    20 
       
    21 #if !defined(_ABS_EAPOL_KEY_STATE_MAP_H_)
       
    22 #define _ABS_EAPOL_KEY_STATE_MAP_H_
       
    23 
       
    24 
       
    25 /// This class is the interface to partner class of the eap_core_map_c class.
       
    26 /// This declares the pure virtual member functions eap_core_map_c class could call.
       
    27 /// Currently this interface is empty. No functions are defined.
       
    28 class EAP_EXPORT abs_eapol_key_state_map_c
       
    29 {
       
    30 private:
       
    31 	//--------------------------------------------------
       
    32 
       
    33 	//--------------------------------------------------
       
    34 protected:
       
    35 	//--------------------------------------------------
       
    36 
       
    37 	//--------------------------------------------------
       
    38 public:
       
    39 	//--------------------------------------------------
       
    40 
       
    41 	/**
       
    42 	 * The destructor of the abs_eap_core_map class does nothing special.
       
    43 	 */
       
    44 	virtual ~abs_eapol_key_state_map_c()
       
    45 	{
       
    46 	}
       
    47 
       
    48 	/**
       
    49 	 * The constructor of the abs_eap_core_map class does nothing special.
       
    50 	 */
       
    51 	abs_eapol_key_state_map_c()
       
    52 	{
       
    53 	}
       
    54 
       
    55 	//--------------------------------------------------
       
    56 }; // class abs_eapol_key_state_map_c
       
    57 
       
    58 #endif //#if !defined(_ABS_EAPOL_KEY_STATE_MAP_H_)
       
    59 
       
    60 //--------------------------------------------------
       
    61 
       
    62 
       
    63 
       
    64 // End.