dosservices/tsrc/dsytesttool/dsytfstifadapter/inc/tfastifentrypoint.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     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:  Declaration of CTFAStifEntryPoint class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __TFASTIFENTRYPOINT_H__
       
    20 #define __TFASTIFENTRYPOINT_H__
       
    21 
       
    22 #include "ctfaentrypoint.h"
       
    23 
       
    24 NONSHARABLE_CLASS( CTFAStifEntryPoint ): public CTFAEntryPoint
       
    25     {
       
    26     public:
       
    27         /**
       
    28         * Creates a new entry point. Called from LibEntry
       
    29         */
       
    30         static CTFAStifEntryPoint* NewL( void );
       
    31 
       
    32         /**
       
    33         * Destructor
       
    34         */
       
    35         virtual ~CTFAStifEntryPoint( void );
       
    36     
       
    37     private:
       
    38         /**
       
    39         * Constructor
       
    40         */
       
    41         CTFAStifEntryPoint( void );
       
    42 
       
    43         /**
       
    44         * 2nd phase constructor
       
    45         */
       
    46         void ConstructL( void );
       
    47 
       
    48         /**
       
    49         * Copy constructor is hidden
       
    50         */
       
    51         CTFAStifEntryPoint( const CTFAStifEntryPoint& aEntry );
       
    52 
       
    53         /**
       
    54         * Assignment operator is hidden
       
    55         */
       
    56         CTFAStifEntryPoint& operator=( const CTFAStifEntryPoint& aEntry );
       
    57     
       
    58     public:
       
    59         /**
       
    60         * Creates a STIF test suite adapter.
       
    61         */
       
    62         MTFATestSuiteAdapter* CreateSuiteAdapterLC( CTFATestSuite& aSuite, TBool aRoot );
       
    63 
       
    64         /**
       
    65         * Creates a STIF test case adapter.
       
    66         */
       
    67         MTFATestCaseAdapter* CreateTestAdapterLC( CTFATestCase& aCase );
       
    68 
       
    69         /**
       
    70         * Creates STIF test environment.
       
    71         */
       
    72         CTFATestEnvironment* CreateEnvironmentL( void );
       
    73     };
       
    74 
       
    75 #endif