buildverification/autosmoketest/Timew/Inc/TestTimewBase.h
branchGCC_SURGE
changeset 17 03d9ade4748d
parent 14 5d7fec11a5ce
parent 15 5b5908ec640f
equal deleted inserted replaced
14:5d7fec11a5ce 17:03d9ade4748d
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // This contains CTestTimewBase which is the base class for all
       
    15 // the Psd Agx suite test steps
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifndef TEST_TIMEW_BASE_H
       
    20 #define TEST_TIMEW_BASE_H
       
    21 
       
    22 #include "almmod.h"
       
    23 #include <test/testexecutestepbase.h>
       
    24 
       
    25 
       
    26 class CTestTimewBase : public CTestStep
       
    27 {
       
    28 public:
       
    29 	CTestTimewBase();
       
    30 	~CTestTimewBase();
       
    31 	virtual enum TVerdict	doTestStepPreambleL();
       
    32 	virtual enum TVerdict	doTestStepPostambleL();	CAlmModel*				Model();
       
    33 
       
    34 private:
       
    35 	CActiveScheduler*	iSchedular;
       
    36 
       
    37 protected:	CAlmModel*			iModel;};
       
    38 
       
    39 #endif /* TEST_TIMEW_BASE_H */