eapol/eapol_framework/eapol_common/type/tls_peap/tls/include/abs_pac_store_initializer.h
changeset 49 43351a4f2da3
equal deleted inserted replaced
47:712b4ffd76bb 49:43351a4f2da3
       
     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: 3 %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_PAC_STORE_INITIALIZER_H_)
       
    23 #define _ABS_PAC_STORE_INITIALIZER_H_
       
    24 
       
    25 #include "eap_fast_types.h"
       
    26 #include "eap_am_export.h"
       
    27 // Start: added by script change_export_macros.sh.
       
    28 #if defined(EAP_NO_EXPORT_ABS_PAC_STORE_INITIALIZER_H)
       
    29 	#define EAP_CLASS_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_NONSHARABLE 
       
    30 	#define EAP_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H 
       
    31 	#define EAP_C_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H 
       
    32 	#define EAP_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H 
       
    33 	#define EAP_C_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H 
       
    34 #elif defined(EAP_EXPORT_ABS_PAC_STORE_INITIALIZER_H)
       
    35 	#define EAP_CLASS_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_EXPORT 
       
    36 	#define EAP_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_FUNC_EXPORT 
       
    37 	#define EAP_C_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_C_FUNC_EXPORT 
       
    38 	#define EAP_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H EAP_FUNC_EXPORT 
       
    39 	#define EAP_C_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H EAP_C_FUNC_EXPORT 
       
    40 #else
       
    41 	#define EAP_CLASS_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_IMPORT 
       
    42 	#define EAP_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_FUNC_IMPORT 
       
    43 	#define EAP_C_FUNC_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H EAP_C_FUNC_IMPORT 
       
    44 	#define EAP_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H 
       
    45 	#define EAP_C_FUNC_EXPORT_ABS_PAC_STORE_INITIALIZER_H 
       
    46 #endif
       
    47 // End: added by script change_export_macros.sh.
       
    48 
       
    49 
       
    50 /// The class is the interface to partner class of the tls_base_application_c class which starts the PAC-store initialization.
       
    51 /// This declares the pure virtual member functions tls_base_application_c class could call.
       
    52 class EAP_CLASS_VISIBILITY_ABS_PAC_STORE_INITIALIZER_H abs_pac_store_initializer_c
       
    53 {
       
    54 private:
       
    55 	//--------------------------------------------------
       
    56 
       
    57 	//--------------------------------------------------
       
    58 protected:
       
    59 	//--------------------------------------------------
       
    60 
       
    61 	//--------------------------------------------------
       
    62 public:
       
    63 	//--------------------------------------------------
       
    64 
       
    65 	/**
       
    66 	 * The destructor of the abs_pac_store_initializer_c class does nothing special.
       
    67 	 */
       
    68 	virtual ~abs_pac_store_initializer_c()
       
    69 	{
       
    70 	}
       
    71 
       
    72 	/**
       
    73 	 * The constructor of the abs_pac_store_initializer_c class does nothing special.
       
    74 	 */
       
    75 	abs_pac_store_initializer_c()
       
    76 	{
       
    77 	}
       
    78 
       
    79 #if defined(USE_FAST_EAP_TYPE)
       
    80 
       
    81 	virtual eap_status_e complete_start_initialize_PAC_store(
       
    82 		const eap_fast_completion_operation_e completion_operation,
       
    83 		const eap_fast_initialize_pac_store_completion_e completion) = 0;
       
    84 
       
    85 #endif //#if defined(USE_FAST_EAP_TYPE)
       
    86 
       
    87 	//--------------------------------------------------
       
    88 }; // class abs_pac_store_initializer_c
       
    89 
       
    90 #endif //#if !defined(_ABS_PAC_STORE_INITIALIZER_H_)
       
    91 
       
    92 //--------------------------------------------------
       
    93 
       
    94 // End.