|
1 // Copyright (c) 2003-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 // __EDIT_ME__ Create your own class definition based on this |
|
16 #if (!defined __TE_comsdbg_SERVER_H__) |
|
17 #define __TE_comsdbg_SERVER_H__ |
|
18 #include <test/testexecuteserverbase.h> |
|
19 |
|
20 class CTE_comsdbgServer : public CTestServer |
|
21 { |
|
22 public: |
|
23 static CTE_comsdbgServer* NewL(); |
|
24 virtual CTestStep* CreateTestStep(const TDesC& aStepName); |
|
25 void InitDir(); |
|
26 TPtrC GetVersion( void ); |
|
27 }; |
|
28 |
|
29 //Filename constants |
|
30 _LIT(KFloggerOutputFile,"c:\\logs\\log.txt"); // log file name and path |
|
31 |
|
32 _LIT(KFloggerIniFile,"c:\\logs\\commsdbg.ini"); |
|
33 _LIT(KTempDuringCreationFloggerIniFile,"c:\\logs\\floggercreate.ini"); |
|
34 _LIT(KTempPreserveFloggerIniFile,"c:\\logs\\tempflogger.ini"); |
|
35 _LIT(KFloggerTestIniMediaSourceFile,"c:\\logs\\ts_flogger.ini"); |
|
36 |
|
37 _LIT(KFloggerOutputDir,"C:\\logs"); |
|
38 _LIT(KTestResultsDir,"c:\\logs\\TestResults\\"); |
|
39 |
|
40 #endif |