authenticationservices/authenticationserver/test/reftestplugin/tpinplugin/tpinplugin.h
changeset 29 ece3df019add
equal deleted inserted replaced
19:cd501b96611d 29:ece3df019add
       
     1 /*
       
     2 * Copyright (c) 2006-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 the License "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 #include <test/TestExecuteServerBase.h>
       
    20 
       
    21 class CPinPluginTestServer : public CTestServer
       
    22 	{
       
    23 public:
       
    24 	/**
       
    25  	 Called inside the MainL() function to create and start the
       
    26  	 CTestServer derived server.
       
    27  	 
       
    28  	 @return - Instance of the test server
       
    29  	 */
       
    30 	static CPinPluginTestServer* NewL();
       
    31 	
       
    32 	/**
       
    33 	 Implementation of CTestServer pure virtual
       
    34  	 @return - A CTestStep derived instance
       
    35  	 */
       
    36 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    37 	RFs& Fs(){return iFs;};
       
    38 
       
    39 private:
       
    40 	RFs iFs;
       
    41 	};
       
    42 
       
    43