equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 // @file ctlbsclockstep.h |
|
15 // This contains the header file for Clock Test Step Base |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef __CT_LBS_CLOCK_STEP_H__ |
|
20 #define __CT_LBS_CLOCK_STEP_H__ |
|
21 |
|
22 // EPOC includes. |
|
23 #include <test/testexecutestepbase.h> |
|
24 |
|
25 // LBS test includes. |
|
26 #include <lbs/test/lbsnetsimtest.h> |
|
27 #include "ctlbsclockserver.h" |
|
28 |
|
29 |
|
30 class CT_LbsClockStep : public CTestStep |
|
31 { |
|
32 |
|
33 public: |
|
34 virtual ~CT_LbsClockStep(); |
|
35 |
|
36 protected: |
|
37 CT_LbsClockStep(CT_LbsClockServer& aParent); |
|
38 |
|
39 void ConstructL(); |
|
40 |
|
41 TInt OpenNetSim(); |
|
42 void CloseNetSim(); |
|
43 |
|
44 |
|
45 /** Server parent class, generally used to access shared data. */ |
|
46 CT_LbsClockServer& iParent; |
|
47 |
|
48 /** Net sim required for tests which invoke assistance data via AGPS module. */ |
|
49 RLbsNetSimTest iNetSim; |
|
50 |
|
51 /** Reference position used to setup Net sim and later verification. */ |
|
52 TPosition iRefPos; |
|
53 |
|
54 }; |
|
55 |
|
56 #endif // __CT_LBS_CLOCK_STEP_H__ |