traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_functional/inc/te_tracecollectorfile.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 // Copyright (c) 2007-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 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  @file te_tracecollectorfile.h
       
    20  @internalTechnology
       
    21 */
       
    22 #if (!defined __TE_ULOGGERFILEPLUGNSTEP_H__)
       
    23 #define __TE_ULOGGERFILEPLUGNSTEP_H__
       
    24 #include <datawrapper.h>
       
    25 #include "te_ostv2integsuite_basewrapper.h"
       
    26 #include <e32base.h>
       
    27 #include <e32math.h>
       
    28 #include <uloggerclient.h>
       
    29 using namespace Ulogger; //CA:added so can use old ulogger api
       
    30 
       
    31 class CTCMFilePluginWrapper : public CTe_MCLSuiteBaseWrapper
       
    32 	{
       
    33 public:
       
    34 	~CTCMFilePluginWrapper();
       
    35 	static CTCMFilePluginWrapper* NewL();
       
    36 	static CTCMFilePluginWrapper* NewLC();
       
    37 	TAny* GetObject();
       
    38 	TBool DoCommandL(	const TTEFFunction& aCommand,
       
    39 						const TTEFSectionName& aSection, 
       
    40 						const TInt aAsyncErrorIndex);
       
    41 private:
       
    42 	CTCMFilePluginWrapper();
       
    43 	void ConstructL();
       
    44 	};
       
    45 
       
    46 _LIT(KTCMFilePluginWrapper,"TCMFilePlugin");
       
    47 
       
    48 #endif