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