|
1 /** |
|
2 * Copyright (c) 2008-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 @file etel1Step.h |
|
22 @internalTechnology |
|
23 */ |
|
24 #if (!defined __ETEL1_STEP_H__) |
|
25 #define __ETEL1_STEP_H__ |
|
26 |
|
27 |
|
28 #include <test/testexecutestepbase.h> |
|
29 #include "te_suplprotocolsuitestepbase.h" |
|
30 #include "suplgatewayinterface.h" |
|
31 |
|
32 class CEtel1Step : public CTe_suplprotocolSuiteStepBase, public MLbsCallbackTimerObserver |
|
33 { |
|
34 public: |
|
35 CEtel1Step(); |
|
36 ~CEtel1Step(); |
|
37 virtual TVerdict doTestStepPreambleL(); |
|
38 virtual TVerdict doTestStepL(); |
|
39 virtual TVerdict doTestStepPostambleL(); |
|
40 |
|
41 // MTestTimerObserver methods |
|
42 void OnTimerEventL(TInt aTimerId); |
|
43 TInt OnTimerError(TInt aTimerId, TInt aError); |
|
44 |
|
45 private: |
|
46 CSuplGatewayInterface* iModule; |
|
47 TRequestStatus iStatus; |
|
48 CActiveSchedulerWait* iSchedulerWait; |
|
49 CLbsCallbackTimer* iTimer; |
|
50 }; |
|
51 |
|
52 _LIT(KEtel1Step,"etel1Step"); |
|
53 |
|
54 #endif //__ETEL1_STEP_H__ |