equal
deleted
inserted
replaced
|
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 |
|
19 |
|
20 #ifndef __CT_LBS_CLIENT_POS_TP22_H__ |
|
21 #define __CT_LBS_CLIENT_POS_TP22_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include "ctlbsportedstepbase.h" |
|
25 |
|
26 // FORWARD DECLARATION |
|
27 class CT_LbsClientPeriodicTester; |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * Test procedure 22 |
|
33 * |
|
34 */ |
|
35 class CT_LbsClientPosTp22 : public CT_LbsPortedStepBase |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 |
|
39 /** |
|
40 * C++ default constructor. |
|
41 */ |
|
42 CT_LbsClientPosTp22(CT_LbsServer& aParent); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 ~CT_LbsClientPosTp22(); |
|
48 |
|
49 public: // Functions from base classes |
|
50 |
|
51 /** |
|
52 * From CT_LbsPortedStepBase |
|
53 * Runs the test in the module |
|
54 */ |
|
55 void StartL(); |
|
56 |
|
57 /** |
|
58 * From CT_LbsPortedStepBase |
|
59 * Called at close down of test |
|
60 */ |
|
61 void CloseTest(); |
|
62 |
|
63 private: // Data |
|
64 RArray<TInt> iRequestArray; |
|
65 CT_LbsClientPeriodicTester* iPeriodicTester1; |
|
66 CT_LbsClientPeriodicTester* iPeriodicTester2; |
|
67 |
|
68 }; |
|
69 |
|
70 #endif // __CT_LBS_CLIENT_POS_TP22_H__ |
|
71 |
|
72 // End of File |