eapol/eapol_framework/eapol_common/include/abs_eapol_wlan_database_reference_if.h
branchRCL_3
changeset 46 c74b3d9f6b9e
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
       
     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: 6 %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_EAPOL_WLAN_DATABASE_REFERENCE_IF_H_)
       
    23 #define _ABS_EAPOL_WLAN_DATABASE_REFERENCE_IF_H_
       
    24 
       
    25 //--------------------------------------------------
       
    26 
       
    27 #include "eap_am_export.h"
       
    28 #include "eap_am_types.h"
       
    29 #include "eap_status.h"
       
    30 
       
    31 
       
    32 /// This class is abstract interface to reference of WLAN database of the current connection.
       
    33 class EAP_EXPORT abs_eapol_wlan_database_reference_if_c
       
    34 {
       
    35 
       
    36 private:
       
    37 	//--------------------------------------------------
       
    38 
       
    39 	//--------------------------------------------------
       
    40 
       
    41 	//--------------------------------------------------
       
    42 public:
       
    43 	//--------------------------------------------------
       
    44 
       
    45 	virtual ~abs_eapol_wlan_database_reference_if_c()
       
    46 	{
       
    47 	}
       
    48 
       
    49 	/**
       
    50 	 * The constructor of the abs_eapol_wlan_database_reference_if_c class does nothing special.
       
    51 	 */
       
    52 	virtual eap_status_e get_wlan_database_reference_values(
       
    53 		eap_variable_data_c * const reference) const = 0;
       
    54 
       
    55 }; // class abs_eapol_wlan_database_reference_if_c
       
    56 
       
    57 
       
    58 #endif //#if !defined(_ABS_EAPOL_WLAN_DATABASE_REFERENCE_IF_H_)
       
    59 
       
    60 //--------------------------------------------------
       
    61 
       
    62 
       
    63 // End.