networkprotocolmodules/suplprotocolmodule/SuplProtocol/test/src/etel0Step.h
changeset 36 b47902b73a93
parent 0 9cfd9a3ee49c
equal deleted inserted replaced
35:a2efdd544abf 36:b47902b73a93
       
     1 /**
       
     2 * Copyright (c) 2008-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 
       
    20 /**
       
    21  @file etel0Step.h
       
    22  @internalTechnology
       
    23 */
       
    24 #if (!defined __ETEL0_STEP_H__)
       
    25 #define __ETEL0_STEP_H__
       
    26 
       
    27 
       
    28 #include <test/testexecutestepbase.h>
       
    29 #include "te_suplprotocolsuitestepbase.h"
       
    30 #include "suplgatewayinterface.h"
       
    31 
       
    32 class CEtel0Step : public CTe_suplprotocolSuiteStepBase, public MLbsCallbackTimerObserver
       
    33 	{
       
    34 public:
       
    35 	CEtel0Step();
       
    36 	~CEtel0Step();
       
    37 	virtual TVerdict doTestStepPreambleL();
       
    38 	virtual TVerdict doTestStepL();
       
    39 	virtual TVerdict doTestStepPostambleL();
       
    40 	
       
    41 	// MTestTimerObserver methods
       
    42 	void OnTimerEventL(TInt aTimerId);
       
    43 	TInt OnTimerError(TInt aTimerId, TInt aError);
       
    44 		
       
    45 private:
       
    46 	CSuplGatewayInterface* iModule;
       
    47 	TRequestStatus iStatus;
       
    48 	CActiveSchedulerWait* iSchedulerWait;
       
    49 	CLbsCallbackTimer* iTimer;
       
    50 	};
       
    51 
       
    52 _LIT(KEtel0Step,"etel0Step");
       
    53 
       
    54 #endif