omadrm/drmengine/drmclock/Inc/GPSWatcher.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 31 Mar 2010 22:01:10 +0300
branchRCL_3
changeset 13 a20e54f39dd4
parent 12 8a03a285ab14
child 16 457cd4423b8c
permissions -rw-r--r--
Revision: 201011 Kit: 201013


/*
* Copyright (c) 2010 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:  Implementation of the GPS Watcher
*
*/


#ifndef GPSWATCHER_H_
#define GPSWATCHER_H_

#include <lbs.h>


class CGPSTimeUpdater;
class CDRMClock;

class CGPSWatcher : public CTimer
	{
public:
	~CGPSWatcher();
	static CGPSWatcher* NewL( CDRMClock* aClock );

private:
	CGPSWatcher( CDRMClock* aClock );
	void ConstructL();
	
	void CheckModules();
	void Subscribe();
	void RunL();
	void DoCancel();
	TInt RunError( TInt aError );
	
private:
	RPositionServer iPosServer;
	TPositionModuleStatusEvent iStatusEvent;
	
	// owned
	CGPSTimeUpdater *iTimeUpdater;
	
	// not owned
	CDRMClock* iClock;

	// Retry counter
	TInt iRetryCounter;
	};

#endif /* GPSWATCHER_H_ */