lbstest/lbstestproduct/lbsclock/inc/ctlbsclockstep.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:35:25 +0100
branchRCL_3
changeset 55 c92d4f3c47c5
parent 0 9cfd9a3ee49c
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201027 Kit: 201035

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// @file ctlbsclockstep.h
// This contains the header file for Clock Test Step Base
// 
//

#ifndef __CT_LBS_CLOCK_STEP_H__
#define __CT_LBS_CLOCK_STEP_H__

// EPOC includes.
#include <test/testexecutestepbase.h>

// LBS test includes.
#include <lbs/test/lbsnetsimtest.h>
#include "ctlbsclockserver.h"


class CT_LbsClockStep : public CTestStep
{

public:
	virtual ~CT_LbsClockStep();

protected:
	CT_LbsClockStep(CT_LbsClockServer& aParent);

	void ConstructL();

	TInt OpenNetSim();
	void CloseNetSim();


	/** Server parent class, generally used to access shared data. */
	CT_LbsClockServer& iParent;

	/** Net sim required for tests which invoke assistance data via AGPS module. */
	RLbsNetSimTest iNetSim;
	
	/** Reference position used to setup Net sim and later verification. */
	TPosition iRefPos;

};

#endif // __CT_LBS_CLOCK_STEP_H__