traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_functional/inc/te_buffermode.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_buffermode.h
       
    20  @internalTechnology
       
    21 */
       
    22 #if (!defined TE_ULOGGERBUFFERMODESTEP_H)
       
    23 #define TE_ULOGGERBUFFERMODESTEP_H
       
    24 #include <datawrapper.h>
       
    25 #include "te_ostv2integsuite_basewrapper.h"
       
    26 #include <e32base.h>
       
    27 #include <e32math.h>
       
    28 #include <uloggerclient.h>
       
    29 #include "te_ostv2integsuite_defs.h"
       
    30 using namespace Ulogger; //CA:added so can use old ulogger api
       
    31 
       
    32 class CTCMBufferModeWrapper : public CTe_MCLSuiteBaseWrapper
       
    33 	{
       
    34 public:
       
    35 	~CTCMBufferModeWrapper();
       
    36 	static CTCMBufferModeWrapper* NewL();
       
    37 	static CTCMBufferModeWrapper* NewLC();
       
    38 	TAny* GetObject();
       
    39 	TBool DoCommandL(	const TTEFFunction& aCommand,
       
    40 						const TTEFSectionName& aSection, 
       
    41 						const TInt aAsyncErrorIndex);
       
    42 	void writeToBuffer(const TPtrC iLit, TInt iTraceNumber ,RULogger* iLogger);
       
    43 
       
    44 private:
       
    45 	CTCMBufferModeWrapper();
       
    46 	void ConstructL();
       
    47 	};
       
    48 
       
    49 _LIT(KTCMBufferModeWrapper,"TCMBufferMode");
       
    50 
       
    51 #endif