commsfwtools/preparedefaultcommsdatabase/te_commsdat/src/Te_commsdatSuiteStepBase.h
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 "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 Te_commsdatSuiteStepBase.h |
|
22 */ |
|
23 |
|
24 #if (!defined __TE_COMMSDAT_STEP_BASE__) |
|
25 #define __TE_COMMSDAT_STEP_BASE__ |
|
26 #include <test/testexecutestepbase.h> |
|
27 // Please add your include here if you have |
|
28 |
|
29 /**************************************************************************** |
|
30 * The reason to have a new step base is that it is very much possible |
|
31 * that the all individual test steps have project related common variables |
|
32 * and members |
|
33 * and this is the place to define these common variable and members. |
|
34 * |
|
35 ****************************************************************************/ |
|
36 class CTe_commsdatSuiteStepBase : public CTestStep |
|
37 { |
|
38 public: |
|
39 virtual ~CTe_commsdatSuiteStepBase(); |
|
40 CTe_commsdatSuiteStepBase(); |
|
41 virtual TVerdict doTestStepPreambleL(); |
|
42 virtual TVerdict doTestStepPostambleL(); |
|
43 |
|
44 //Please add your class members which will be common to all individual test steps: |
|
45 protected: |
|
46 HBufC8* iReadData; |
|
47 HBufC8* iWriteData; |
|
48 }; |
|
49 |
|
50 #endif |