eapol/eapol_framework/eapol_common/include/eap_network_id_selector.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(_EAP_NETWORK_ID_SELECTOR_H_)
       
    22 #define _EAP_NETWORK_ID_SELECTOR_H_
       
    23 
       
    24 #include "eap_tools.h"
       
    25 #include "eap_am_export.h"
       
    26 #include "eap_variable_data.h"
       
    27 #include "eap_am_network_id.h"
       
    28 
       
    29 
       
    30 //--------------------------------------------------
       
    31 
       
    32 class EAP_EXPORT eap_network_id_selector_c
       
    33 : public eap_variable_data_c
       
    34 {
       
    35 private:
       
    36 
       
    37 	abs_eap_am_tools_c * const m_am_tools;
       
    38 
       
    39 public:
       
    40 
       
    41 	EAP_FUNC_IMPORT virtual ~eap_network_id_selector_c();
       
    42 
       
    43 	EAP_FUNC_IMPORT eap_network_id_selector_c(
       
    44 		abs_eap_am_tools_c * const tools);
       
    45 
       
    46 	EAP_FUNC_IMPORT eap_network_id_selector_c(
       
    47 		abs_eap_am_tools_c * const tools,
       
    48 		const eap_am_network_id_c * const network_id);
       
    49 
       
    50 	EAP_FUNC_IMPORT eap_status_e set_selector(
       
    51 		const eap_am_network_id_c * const network_id);
       
    52 
       
    53 	EAP_FUNC_IMPORT eap_network_id_selector_c(
       
    54 		abs_eap_am_tools_c * const tools,
       
    55 		const eap_network_id_selector_c * const selector);
       
    56 
       
    57 
       
    58 	//
       
    59 	EAP_FUNC_IMPORT eap_network_id_selector_c * copy() const;
       
    60 
       
    61 };
       
    62 
       
    63 
       
    64 #endif //#if !defined(_EAP_NETWORK_ID_SELECTOR_H_)
       
    65 
       
    66 //--------------------------------------------------
       
    67 
       
    68 
       
    69 
       
    70 // End.