|
1 /** |
|
2 * Copyright (c) 2005-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 initialiseExtSblpParameterSetStep.h |
|
22 */ |
|
23 #if (!defined INITIALISEEXTSBLPPARAMETERSET_STEP_H__) |
|
24 #define INITIALISEEXTSBLPPARAMETERSET_STEP_H__ |
|
25 |
|
26 #include <testexecutestepbase.h> |
|
27 #include "Te_EsockStepBase.h" |
|
28 #include <ip_subconparams.h> |
|
29 |
|
30 /** |
|
31 Class containing extension SBLP parameters |
|
32 |
|
33 @internalComponent |
|
34 */ |
|
35 class TExtensionSetSblpParams |
|
36 { |
|
37 public: |
|
38 ~TExtensionSetSblpParams(); |
|
39 |
|
40 CSubConParameterFamily::TParameterSetType iType; |
|
41 TAuthToken iAuthorisationToken; |
|
42 RArray<TPtrC> iFlowNames; |
|
43 }; |
|
44 |
|
45 /** |
|
46 Class implementing initialiseExtSblpParameterSetStep |
|
47 |
|
48 @internalComponent |
|
49 */ |
|
50 class CinitialiseExtSblpParameterSetStep : public CTe_EsockStepBase |
|
51 { |
|
52 public: |
|
53 CinitialiseExtSblpParameterSetStep(CCEsockTestBase*& aEsockTest); |
|
54 TVerdict doSingleTestStep(); |
|
55 TBool DescriptionExists(); |
|
56 |
|
57 protected: |
|
58 void ConstructExtensionSetL(); |
|
59 |
|
60 private: |
|
61 //current params (.ini) |
|
62 TInt iFamilyId; |
|
63 TExtensionSetSblpParams iParams; |
|
64 TPtrC iSetName; |
|
65 TPtrC iBundleName; |
|
66 }; |
|
67 |
|
68 _LIT(KinitialiseExtSblpParameterSetStep,"initialiseExtSblpParameterSetStep"); |
|
69 |
|
70 #endif //INITIALISEEXTSBLPPARAMETERSET_STEP_H__ |
|
71 |