testexecfw/tef/tefutilities/platsec/inc/testplatsecserver.h
changeset 0 3e07fef1e154
equal deleted inserted replaced
-1:000000000000 0:3e07fef1e154
       
     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 * This contains CTestPlatSecServer. This class creates and initializes
       
    16 * the test steps and return the pointer to TEF
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #if (!defined __TEST_PLATSEC_SERVER_H__)
       
    23 #define __TEST_PLATSEC_SERVER_H__
       
    24 
       
    25 //TEF include
       
    26 #include <testexecuteserverbase.h>
       
    27 
       
    28 /**
       
    29  This class creates and initializes the test steps and return 
       
    30  the pointer to TEF
       
    31 */
       
    32 
       
    33 class CTestPlatSecServer : public CTestServer
       
    34 {
       
    35 public:
       
    36 	//Two phase constructor
       
    37 	static CTestPlatSecServer* NewL();
       
    38 
       
    39 	//Creates the test step
       
    40 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    41 
       
    42 	//Destructor
       
    43 	~CTestPlatSecServer();
       
    44 
       
    45 protected:
       
    46 	//Constructor
       
    47 	CTestPlatSecServer();
       
    48 };
       
    49 #endif //__TEST_PLATSEC_SERVER_H__