equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-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 the License "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 /** |
|
22 @file |
|
23 @internalAll |
|
24 @released |
|
25 */ |
|
26 |
|
27 #ifndef __RTAUTILSSTEP_H__ |
|
28 #define __RTAUTILSSTEP_H__ |
|
29 |
|
30 #include <test/testexecutestepbase.h> |
|
31 |
|
32 class CRTAUtilsServer; |
|
33 |
|
34 //Base class used to provide utility functions availble to test step classes |
|
35 class CRTAUtilsStep : public CTestStep |
|
36 { |
|
37 public: |
|
38 CRTAUtilsStep(); |
|
39 virtual ~CRTAUtilsStep(); |
|
40 |
|
41 /* |
|
42 * Implementation of CTestStep virtual functions, create and install a CActiveScheduler |
|
43 */ |
|
44 virtual TVerdict doTestStepPreambleL(); |
|
45 |
|
46 /* |
|
47 * Implementation of CTestStep virtual functions, uninstalls and removes the CActiveScheduler |
|
48 */ |
|
49 virtual TVerdict doTestStepPostambleL(); |
|
50 |
|
51 private: |
|
52 CActiveScheduler *iActiveScheduler; |
|
53 TUid iDtorIDKey; |
|
54 }; |
|
55 |
|
56 #endif |