eapol/eapol_framework/eapol_common/am/include/abs_eap_am_memory_store_data.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 
       
    22 #if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
       
    23 #define _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_
       
    24 
       
    25 
       
    26 #include "eap_am_export.h"
       
    27 
       
    28 /// This class is base class for data stored to memory store.
       
    29 /**
       
    30  * Here are no real functions.
       
    31  */
       
    32 class EAP_EXPORT abs_eap_am_memory_store_data_c
       
    33 {
       
    34 public:
       
    35 
       
    36 	/**
       
    37 	 * The destructor of the abs_eap_am_memory_store_data_c class does nothing special.
       
    38 	 */
       
    39 	EAP_FUNC_IMPORT virtual ~abs_eap_am_memory_store_data_c();
       
    40 
       
    41 	/**
       
    42 	 * The constructor of the abs_eap_am_memory_store_data_c does nothing special.
       
    43 	 */
       
    44 	EAP_FUNC_IMPORT abs_eap_am_memory_store_data_c();
       
    45 
       
    46 };
       
    47 
       
    48 #endif //#if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
       
    49 
       
    50 
       
    51 
       
    52 // End.