|
1 // Copyright (c) 2008-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 Name : SPDTestConst.h |
|
19 Author : |
|
20 Copyright : Your copyright notice |
|
21 Description : Exe header file |
|
22 ============================================================================ |
|
23 */ |
|
24 |
|
25 #ifndef __SPDTESTCONST_H__ |
|
26 #define __SPDTESTCONST_H__ |
|
27 |
|
28 /** command line options */ |
|
29 _LIT(KComa, ","); |
|
30 _LIT(KSpace, " "); |
|
31 _LIT(KCmdIndicator, "-"); |
|
32 _LIT(KCmdVerbose, "v"); |
|
33 _LIT(KCmdMode, "m"); |
|
34 _LIT(KCmdNoWait, "w"); |
|
35 |
|
36 /** commandline arguments */ |
|
37 _LIT(KModeCreate, "create"); |
|
38 _LIT(KModeValidate, "validate"); |
|
39 |
|
40 enum TCommandId |
|
41 { |
|
42 EInvalid =-1, |
|
43 ECreateSetting = 0, |
|
44 EValidateSetting = 1 |
|
45 }; |
|
46 |
|
47 enum TCommandError |
|
48 { |
|
49 ESuccess = 0, |
|
50 EInvalidMode = 1, |
|
51 EInvalidCmdArgs = 2, |
|
52 }; |
|
53 |
|
54 /** Setting types */ |
|
55 _LIT(KTypeInt, "int"); |
|
56 _LIT(KTypeReal, "real"); |
|
57 _LIT(KTypeString, "string"); |
|
58 _LIT(KTypeString8, "string8"); |
|
59 |
|
60 |
|
61 |
|
62 #endif |