cbsref/telephonyrefplugins/atltsy/integrationtest/inc/te_integration_stltsysuiteserver.h
changeset 49 f50f4094acd7
equal deleted inserted replaced
48:14460bf2a402 49:f50f4094acd7
       
     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_integration_stltsySuiteServer.h
       
    22  @internalTechnology
       
    23 */
       
    24 
       
    25 #if (!defined __TE_INTEGRATION_STLTSY_SERVER_H__)
       
    26 #define __TE_INTEGRATION_STLTSY_SERVER_H__
       
    27 
       
    28 #include <TestExecuteServerBase.h>
       
    29 
       
    30 // For shared data
       
    31 #include "TestLtsySharedData.h"
       
    32 
       
    33 #include "TestLtsyModel.h"
       
    34 
       
    35 class CTe_integration_stltsySuite : public CTestServer
       
    36 	{
       
    37 public:
       
    38 	static CTe_integration_stltsySuite* NewL();
       
    39 	// Base class pure virtual override
       
    40 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    41 	~CTe_integration_stltsySuite();
       
    42 
       
    43 // Please Add/modify your class members
       
    44 private:
       
    45 	CTe_integration_stltsySuite();
       
    46 	void ConstructL(const TDesC& aName);
       
    47 public:
       
    48 	CTestLtsySharedData* iSharedData;
       
    49 	CTestLtsyModel* iTestModel;
       
    50 	};
       
    51 
       
    52 #endif