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 |
|
21 #ifndef __CT_LBS_CALCULATION_TP235_H__ |
|
22 #define __CT_LBS_CALCULATION_TP235_H__ |
|
23 |
|
24 // INCLUDES |
|
25 #include "ctlbscalculationstepbase.h" |
|
26 |
|
27 // Literals used |
|
28 _LIT(KLbsCalculationCalculateSpeed, "LbsCalculationCalculateSpeed"); |
|
29 |
|
30 // CLASS DECLARATION |
|
31 class CT_LbsCalculationTP235 : public CT_LbsCalculationStepBase |
|
32 { |
|
33 public: // Constructors and destructor |
|
34 |
|
35 /** |
|
36 * C++ constructor. |
|
37 */ |
|
38 CT_LbsCalculationTP235(CT_LbsCalculationServer& aParent); |
|
39 |
|
40 /** |
|
41 * Destructor. |
|
42 */ |
|
43 ~CT_LbsCalculationTP235(); |
|
44 |
|
45 static CT_LbsCalculationTP235* New(CT_LbsCalculationServer& aParent); |
|
46 |
|
47 public: // Functions from base classes |
|
48 |
|
49 TVerdict doTestStepL(); |
|
50 |
|
51 private: |
|
52 |
|
53 void TestValuesL(); |
|
54 |
|
55 void TestNotSupportedL(); |
|
56 |
|
57 void LogTestError(const T_LbsCalculationCheck& aCalc, |
|
58 const TInt aError, |
|
59 const TInt aRow=0); |
|
60 }; |
|
61 |
|
62 #endif // __CT_LBS_CALCULATION_TP235_H__ |
|
63 |
|
64 // End of File |