eapol/eapol_framework/eapol_symbian/eap_server/include/EapServerStrings.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
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: 5 %
       
    20 */
       
    21 
       
    22 #if !defined( _EAP_SERVER_STRINGS_H_ )
       
    23 #define _EAP_SERVER_STRINGS_H_
       
    24 
       
    25 /** @file */
       
    26 
       
    27 #include "EapServerClientDef.h"
       
    28 #include "eap_am_types.h"
       
    29 
       
    30 //----------------------------------------------------------------------------------
       
    31 
       
    32 /// This class includes the debug strings of the EAP-SERVER.
       
    33 class EapServerStrings
       
    34 {
       
    35 public:
       
    36 
       
    37 	IMPORT_C virtual ~EapServerStrings();
       
    38 
       
    39 	IMPORT_C EapServerStrings();
       
    40 
       
    41 	/**
       
    42 	 * Function returns string of TEapRequests.
       
    43 	 * @param request is the queried string.
       
    44 	 */
       
    45 	IMPORT_C static eap_const_string GetEapRequestsString(const TEapRequests request);
       
    46 
       
    47 	/**
       
    48 	 * Function returns string of TEapRequests.
       
    49 	 * @param request is the queried string.
       
    50 	 */
       
    51 	IMPORT_C static eap_const_string GetEapRequestsString(const TInt request);
       
    52 
       
    53 };
       
    54 
       
    55 //----------------------------------------------------------------------------------
       
    56 
       
    57 #endif //#if !defined( _EAP_SERVER_STRINGS_H_ )
       
    58 
       
    59 // End.