testexecfw/stf/stfext/testlibplugins/filelibplugin/inc/stffiletestlibplugin.h
changeset 2 8bb370ba6d1d
equal deleted inserted replaced
1:bbd31066657e 2:8bb370ba6d1d
       
     1 /*
       
     2 * Copyright (c) 2009 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 "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: This file contains the header file of the CAtsLogger 
       
    15 * class.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef __STFFILETESTLIB_H__
       
    20 #define __STFFILETESTLIB_H__
       
    21 
       
    22 //  Include Files
       
    23 
       
    24 #include <e32base.h>	// CBase
       
    25 #include <e32std.h>	 // TBuf
       
    26 #include "StfTestLibPluginInterface.h"
       
    27 
       
    28 
       
    29 
       
    30 
       
    31 
       
    32 //  Class Definitions
       
    33     
       
    34 class CStfFileTestLibPlugin : public CStfTestLibPlugin
       
    35     {
       
    36 public:    // new functions
       
    37     
       
    38     ~CStfFileTestLibPlugin();
       
    39     
       
    40     static CStfFileTestLibPlugin* NewL();
       
    41    
       
    42 
       
    43 public:
       
    44     // new functions, example API
       
    45     virtual TBool IsCommandSupported(const TDesC& aCommand) ;
       
    46     virtual TInt  ExecuteCommandL(const TDesC& aCommandLine);
       
    47 private:
       
    48     // new functions
       
    49     CStfFileTestLibPlugin();
       
    50     void ConstructL();
       
    51 
       
    52 private:
       
    53     // data
       
    54    
       
    55     };
       
    56 
       
    57 
       
    58 
       
    59 #endif  // __STFFILETESTLIB_H__
       
    60