eapol/eapol_framework/eapol_common/am/include/abs_eap_am_memory_store_data.h
changeset 52 c23bdf5a328a
parent 33 938269283a16
equal deleted inserted replaced
51:e863583e6720 52:c23bdf5a328a
    22 #if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
    22 #if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
    23 #define _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_
    23 #define _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_
    24 
    24 
    25 
    25 
    26 #include "eap_am_export.h"
    26 #include "eap_am_export.h"
       
    27 // Start: added by script change_export_macros.sh.
       
    28 #if defined(EAP_NO_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H)
       
    29 	#define EAP_CLASS_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_NONSHARABLE 
       
    30 	#define EAP_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    31 	#define EAP_C_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    32 	#define EAP_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    33 	#define EAP_C_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    34 #elif defined(EAP_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H)
       
    35 	#define EAP_CLASS_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_EXPORT 
       
    36 	#define EAP_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_FUNC_EXPORT 
       
    37 	#define EAP_C_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_C_FUNC_EXPORT 
       
    38 	#define EAP_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_FUNC_EXPORT 
       
    39 	#define EAP_C_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_C_FUNC_EXPORT 
       
    40 #else
       
    41 	#define EAP_CLASS_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_IMPORT 
       
    42 	#define EAP_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_FUNC_IMPORT 
       
    43 	#define EAP_C_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H EAP_C_FUNC_IMPORT 
       
    44 	#define EAP_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    45 	#define EAP_C_FUNC_EXPORT_ABS_EAP_AM_MEMORY_STORE_DATA_H 
       
    46 #endif
       
    47 // End: added by script change_export_macros.sh.
    27 
    48 
    28 /// This class is base class for data stored to memory store.
    49 /// This class is base class for data stored to memory store.
    29 /**
    50 /**
    30  * Here are no real functions.
    51  * Here are no real functions.
    31  */
    52  */
    32 class EAP_EXPORT abs_eap_am_memory_store_data_c
    53 class EAP_CLASS_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H abs_eap_am_memory_store_data_c
    33 {
    54 {
    34 public:
    55 public:
    35 
    56 
    36 	/**
    57 	/**
    37 	 * The destructor of the abs_eap_am_memory_store_data_c class does nothing special.
    58 	 * The destructor of the abs_eap_am_memory_store_data_c class does nothing special.
    38 	 */
    59 	 */
    39 	EAP_FUNC_IMPORT virtual ~abs_eap_am_memory_store_data_c();
    60 	EAP_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H virtual ~abs_eap_am_memory_store_data_c();
    40 
    61 
    41 	/**
    62 	/**
    42 	 * The constructor of the abs_eap_am_memory_store_data_c does nothing special.
    63 	 * The constructor of the abs_eap_am_memory_store_data_c does nothing special.
    43 	 */
    64 	 */
    44 	EAP_FUNC_IMPORT abs_eap_am_memory_store_data_c();
    65 	EAP_FUNC_VISIBILITY_ABS_EAP_AM_MEMORY_STORE_DATA_H abs_eap_am_memory_store_data_c();
    45 
    66 
    46 };
    67 };
    47 
    68 
    48 #endif //#if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
    69 #endif //#if !defined( _ABS_EAP_AM_TOOLS_MEMORY_STORE_DATA_H_ )
    49 
    70