lbstest/lbstestproduct/lbshybridconflict/inc/ctlbshybridconflictstep.h
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     1 // Copyright (c) 2007-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 // @file ctlbshybridmolrstep.h
       
    15 // This contains the header file for LBS HYBRID Conflict Test Step Base
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifndef __CT_LBS_HYBRID_CONFLICT_STEP_H__
       
    20 #define __CT_LBS_HYBRID_CONFLICT_STEP_H__
       
    21 
       
    22 #include <test/testexecutestepbase.h>
       
    23 #include <lbs/lbsnetcommon.h>
       
    24 
       
    25 #include "ctlbshybridconflictsrv.h"
       
    26 
       
    27 /** Must be the Id of the protool module used for the test */
       
    28 const TUid KRequestUid = {0x10282293};
       
    29 
       
    30 class CT_LbsHybridConflictStep : public CTestStep
       
    31 {
       
    32 
       
    33 public:
       
    34 	virtual ~CT_LbsHybridConflictStep();
       
    35 	
       
    36 	virtual TVerdict doTestStepPreambleL();
       
    37 	virtual TVerdict doTestStepPostambleL();
       
    38 
       
    39 protected:
       
    40 	CT_LbsHybridConflictStep(CT_LbsHybridConflictServer& aParent);
       
    41 	void ConstructL();
       
    42 	
       
    43 	CT_LbsHybridConflictServer& iParent;
       
    44 };
       
    45 
       
    46 struct SData			
       
    47 	{
       
    48 	TLbsNetSessionId sessionId;
       
    49 	TVerdict response;
       
    50 	};
       
    51 
       
    52 
       
    53 #endif // __CT_LBS_HYBRID_CONFLICT_STEP_H__