networkprotocolmodules/suplprotocolmodule/SuplProtocol/test/src/mtlr24Step.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 mtlr24Step.h
       
    22  @internalTechnology
       
    23 */
       
    24 #if (!defined __MTLR24_STEP_H__)
       
    25 #define __MTLR24_STEP_H__
       
    26 #include <test/testexecutestepbase.h>
       
    27 #include "te_suplprotocolsuitestepbase.h"
       
    28 #include "suplgatewayinterface.h"
       
    29 #include "suplinitgenerator.h"
       
    30 #include <lbs/lbssuplpush.h>
       
    31 
       
    32 class Cmtlr24Step : public CTe_suplprotocolSuiteStepBase, 
       
    33                    public MLbsSuplPushObserver
       
    34 	{
       
    35 public:
       
    36 	Cmtlr24Step();
       
    37 	~Cmtlr24Step();
       
    38 	virtual TVerdict doTestStepPreambleL();
       
    39 	virtual TVerdict doTestStepL();
       
    40 	virtual TVerdict doTestStepPostambleL();
       
    41 
       
    42 	// from MLbsSuplPushObserver
       
    43 	void OnSuplInitComplete(TLbsSuplPushChannel aChannel, TLbsSuplPushRequestId aReqId, TInt aError, TInt aReserved);
       
    44 
       
    45 private:
       
    46 	CSuplGatewayInterface* iModule;
       
    47 //	CTe_LbsSuplSmsTriggerSender* iSmsSender;
       
    48 	CSuplInitGenerator* iSuplInitGenerator;
       
    49 	CLbsSuplPush* iSuplPush;
       
    50 
       
    51 	TInt iSmsSendError;
       
    52 	TBufC8<1024> iReceiveBuffer;
       
    53 
       
    54 	};
       
    55 
       
    56 _LIT(Kmtlr24Step,"mtlr24Step");
       
    57 
       
    58 #endif