applayerprotocols/httptransportfw/Test/T_HttpIntegration/CCmdLog.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // $Header$
       
    15 // CCmdLog..h
       
    16 // The header file of the CCmdLog (log mode) command class.
       
    17 // 
       
    18 //
       
    19 
       
    20 #ifndef __CCMDLOG_H__
       
    21 #define __CCMDLOG_H__
       
    22 
       
    23 //-----------------------------------------------------------------------------
       
    24 
       
    25 #include <e32base.h>
       
    26 
       
    27 //-----------------------------------------------------------------------------
       
    28 
       
    29 #include "GT0149.h"
       
    30 #include "ECommandIDs.h"
       
    31 #include "TfrLex.h"
       
    32 #include "CCmdBase.h"
       
    33 #include "CCmdFamily.h"
       
    34 
       
    35 //-----------------------------------------------------------------------------
       
    36 
       
    37 class CCmdLog : public CCmdBase
       
    38 {
       
    39 public:
       
    40 
       
    41 	static CCmdLog *NewL ( TInt, const TDesC& aKeyphrase, const TDesC& aHelpPhrase);
       
    42 	static CCmdLog *NewLC( TInt, const TDesC& aKeyphrase, const TDesC& aHelpPhrase);
       
    43 
       
    44 protected:  // from CCmdBase
       
    45 
       
    46 	void ConstructL( TInt aCommandId, const TDesC& aKeyphrase, const TDesC& aHelpPhrase);
       
    47 
       
    48 public:     // from CCmdBase
       
    49 
       
    50 	TInt ProcessL ( const TDesC& aCommand );
       
    51 
       
    52 };
       
    53 
       
    54 //-----------------------------------------------------------------------------
       
    55 
       
    56 #endif  // __CCMDLOG_H__
       
    57 
       
    58 //-----------------------------------------------------------------------------
       
    59 // End of File
       
    60 //-----------------------------------------------------------------------------