commsconfig/commsdatabaseshim/TE_commdb/te_usecases/inc/TE_UseCasesServer.h
changeset 72 ae47d0499bee
equal deleted inserted replaced
68:5da8188e392b 72:ae47d0499bee
       
     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  * @file TE_UseCasesServer.h
       
    20  *
       
    21  * Header for TE_UseCasesSuite class. This is the container
       
    22  * class for all the CommDb ConnPrefSuite test steps
       
    23  *
       
    24  */
       
    25 #if (!defined __TE_UseCasesSUITE_H__)
       
    26 #define __TE_UseCasesSUITE_H__
       
    27 
       
    28 #include <test/TestExecuteServerBase.h>
       
    29 #include <e32std.h>
       
    30 
       
    31 #define MAX_NAME_LENGTH		10			///< Maximum length of connection name
       
    32 
       
    33 class CTS_UseCasesStep;
       
    34 
       
    35 class CTE_UseCasesServer : public CTestServer
       
    36 	{
       
    37 public:
       
    38 	static CTE_UseCasesServer* NewL();
       
    39 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    40 	
       
    41 	
       
    42 	// this should be a pure virtual so every test ddl
       
    43 	// has to provide a version but for now defaults to ?.?
       
    44 	virtual TPtrC GetVersion( void );
       
    45 		
       
    46 	};
       
    47 
       
    48 #endif