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