eapol/eapol_framework/eapol_common/include/eap_header_string.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_HEADER_STRING_H_ )
       
    22 #define _EAP_HEADER_STRING_H_
       
    23 
       
    24 /** @file */
       
    25 
       
    26 #include "eap_variable_data.h"
       
    27 #include "eap_status.h"
       
    28 #include "eap_am_export.h"
       
    29 #include "eap_header.h"
       
    30 
       
    31 /// This class includes the debug strings of the eap_header_base_c.
       
    32 class EAP_EXPORT eap_header_string_c
       
    33 {
       
    34 public:
       
    35 
       
    36 	EAP_FUNC_IMPORT virtual ~eap_header_string_c();
       
    37 
       
    38 	EAP_FUNC_IMPORT eap_header_string_c();
       
    39 
       
    40 	/**
       
    41 	 * Function returns string of eap_code_value_e.
       
    42 	 * @param code is the queried string.
       
    43 	 */
       
    44 	EAP_FUNC_IMPORT static eap_const_string get_eap_code_string(const eap_code_value_e code);
       
    45 
       
    46 	/**
       
    47 	 * Function returns string of eap_type_value_e.
       
    48 	 * @param type is the queried string.
       
    49 	 */
       
    50 	EAP_FUNC_IMPORT static eap_const_string get_eap_type_string(const eap_type_value_e type);
       
    51 
       
    52 };
       
    53 
       
    54 
       
    55 #endif //#if !defined( _EAP_HEADER_STRING_H_ )
       
    56 
       
    57 
       
    58 
       
    59 // End.