buildverification/autosmoketest/TestApps/inc/TestAppServer.h
branchGCC_SURGE
changeset 17 03d9ade4748d
parent 14 5d7fec11a5ce
parent 15 5b5908ec640f
equal deleted inserted replaced
14:5d7fec11a5ce 17:03d9ade4748d
     1 /*
       
     2 * Copyright (c) 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 #if (!defined __TESTAPP_SERVER_H__)
       
    20 #define __TESTAPP_SERVER_H__
       
    21 #include <test/testexecuteserverbase.h>
       
    22 
       
    23 class CTestAppServer : public CTestServer
       
    24 	{
       
    25 public:
       
    26 	static CTestAppServer* NewL();
       
    27 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    28 	//RFs& Fs(){return iFs;};
       
    29 
       
    30 private:
       
    31 	//RFs iFs;
       
    32 	};
       
    33 #endif