0
|
1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
|
|
18 |
|
|
19 |
CStepData accessor : step
|
|
20 |
|
|
21 |
@return "TPtrC"
|
|
22 |
The step description
|
|
23 |
|
|
24 |
@xxxx
|
|
25 |
|
|
26 |
|
|
27 |
*/
|
|
28 |
inline TPtrC CStepData::Step() const
|
|
29 |
{
|
|
30 |
return iStep;
|
|
31 |
}
|
|
32 |
|
|
33 |
/**
|
|
34 |
*
|
|
35 |
* CStepData accessor : config
|
|
36 |
*
|
|
37 |
* @return "TPtrC"
|
|
38 |
* The config description
|
|
39 |
*
|
|
40 |
* @xxxx
|
|
41 |
*
|
|
42 |
*/
|
|
43 |
inline TPtrC CStepData::Config() const
|
|
44 |
{
|
|
45 |
return iConfig;
|
|
46 |
}
|
|
47 |
|
|
48 |
/**
|
|
49 |
*
|
|
50 |
* CStepData accessor : suite
|
|
51 |
*
|
|
52 |
* @return "TPtrC"
|
|
53 |
* The step description
|
|
54 |
*
|
|
55 |
* @xxxx
|
|
56 |
*
|
|
57 |
*/
|
|
58 |
inline CSuiteDll* CStepData::SuiteDll() const
|
|
59 |
{
|
|
60 |
return iSuite;
|
|
61 |
}
|
|
62 |
|
|
63 |
|
|
64 |
|