datacommsserver/esockserver/test/TE_EsockTestSteps/inc/initialiseIMSExtParameterSetStep.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     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 // Initialize IMS parameters
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 #if (!defined INITIALISEEXTIMSPARAMETERSET_STEP_H)
       
    23 #define INITIALISEEXTIMSPARAMETERSET_STEP_H
       
    24 #include <testexecutestepbase.h>
       
    25 #include <ip_subconparams.h>
       
    26 #include "Te_EsockStepBase.h"
       
    27 
       
    28 
       
    29 /**
       
    30 Class implementing initialisation of IMS parameter family
       
    31 
       
    32 @internalComponent
       
    33 */
       
    34 class CinitialiseIMSExtParameterSetStep : public CTe_EsockStepBase
       
    35 	{
       
    36 public:
       
    37 	CinitialiseIMSExtParameterSetStep(CCEsockTestBase*& aEsockTest);
       
    38 	TVerdict doSingleTestStep();
       
    39 	TBool DescriptionExists();
       
    40 
       
    41 protected:
       
    42 	void ConstructIMSParamSetL();
       
    43 
       
    44 private:
       
    45     //current params (.ini)
       
    46     TInt iFamilyId;
       
    47     TPtrC iSetName;
       
    48     TPtrC iBundleName;
       
    49     TExtensionIMSParamsSet iIMSParams;
       
    50 	};
       
    51 
       
    52 _LIT(KinitialiseExtIMSParameterSetStep,"initialiseIMSExtParameterSetStep");
       
    53 
       
    54 #endif //INITIALISEEXTIMSPARAMETERSET_STEP_H
       
    55