|
1 /* |
|
2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __CT_LBS_HYBRID_MULTIPLE_DEFS_H__ |
|
19 #define __CT_LBS_HYBRID_MULTIPLE_DEFS_H__ |
|
20 |
|
21 /** ID of the different protocol modules used in the test */ |
|
22 const TUid KPm1RequestUid = {0x10285AB7}; //Extended Hybrid PM 1 |
|
23 //const TUid KRequestUid = {0x10282293}; //Extended Hybrid PM 2 |
|
24 |
|
25 /** Enum for the privacy request call back messages*/ |
|
26 enum TPrivacyControllerTestMessages |
|
27 { |
|
28 EProcessNetworkLocationRequest = 3000, |
|
29 EProcessNetworkPositionUpdate, |
|
30 EProcessRequestComplete |
|
31 }; |
|
32 |
|
33 /** Enum for the Self Location messages*/ |
|
34 enum TSelfLocateTestMessages |
|
35 { |
|
36 ERequestSelfLocation = 4000, |
|
37 ENotifyPositionUpdate = 5000, |
|
38 EGetLastKnownLocation |
|
39 }; |
|
40 |
|
41 /** Enum for the X3P messages*/ |
|
42 enum TX3PTestMessages |
|
43 { |
|
44 ETransmitPosition = 6000, |
|
45 EX3PRefPositionUpdate = 7000, |
|
46 EX3PPositionUpdate |
|
47 }; |
|
48 |
|
49 /** */ |
|
50 enum TCombinedTestMessages |
|
51 { |
|
52 ENetTestMsgEndSession = 1100, |
|
53 ENetTestMsgProcessSessionCompleteError |
|
54 }; |
|
55 |
|
56 /** |
|
57 */ |
|
58 class MHybridMultipleTestCallBack |
|
59 { |
|
60 public: |
|
61 virtual void StopTest(TInt aError) = 0; |
|
62 virtual void LogTestStatement(const TDesC& aMessage) = 0; |
|
63 virtual void SequenceFinished() = 0; |
|
64 virtual void SignalCheckForNewSequences() = 0; |
|
65 }; |
|
66 |
|
67 #endif //__CT_LBS_HYBRID_MULTIPLE_DEFS_H__ |