testexecmdw/tef/tef/test/regressiontest/scriptcommand/inc/te_regscriptcommandserver.h
branchRCL_3
changeset 3 9397a16b6eb8
parent 1 6edeef394eb7
equal deleted inserted replaced
1:6edeef394eb7 3:9397a16b6eb8
     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 * Name		: CTe_RegScriptCommandServer.h
       
    16 * Author	  : Jason Zhou
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #ifndef CTE_REGSCRIPTCOMMANDSERVER_H
       
    23 #define CTE_REGSCRIPTCOMMANDSERVER_H
       
    24 
       
    25 // INCLUDES
       
    26 #include <e32std.h>
       
    27 #include <e32base.h>
       
    28 #include <test/testexecuteserverbase.h>
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33  *  CTe_RegScriptCommandServer
       
    34  * 
       
    35  */
       
    36 class CTe_RegScriptCommandServer : public CTestServer
       
    37 	{
       
    38 public:
       
    39 	// Constructors and destructor
       
    40 
       
    41 	/**
       
    42 	 * Destructor.
       
    43 	 */
       
    44 	~CTe_RegScriptCommandServer();
       
    45 
       
    46 	/**
       
    47 	 * Two-phased constructor.
       
    48 	 */
       
    49 	static CTe_RegScriptCommandServer* NewL();
       
    50 
       
    51 	/**
       
    52 	 * Two-phased constructor.
       
    53 	 */
       
    54 	static CTe_RegScriptCommandServer* NewLC();
       
    55 	
       
    56 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    57 	
       
    58 	TTime& StartTime() { return iStartTime; }
       
    59 
       
    60 private:
       
    61 
       
    62 	/**
       
    63 	 * Constructor for performing 1st stage construction
       
    64 	 */
       
    65 	CTe_RegScriptCommandServer();
       
    66 	
       
    67 private:
       
    68 	TTime iStartTime;
       
    69 	};
       
    70 
       
    71 #endif // CTE_REGSCRIPTCOMMANDSERVER_H