diff -r e16d72588c28 -r 8a03a285ab14 omadrm/drmengine/drmclock/Inc/GPSTimeUpdater.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omadrm/drmengine/drmclock/Inc/GPSTimeUpdater.h Mon Mar 15 12:41:43 2010 +0200 @@ -0,0 +1,60 @@ + +/* +* 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 GPSTIMEUPDATER_H_ +#define GPSTIMEUPDATER_H_ + +#include +#include + +class CDRMClock; + +class CGPSTimeUpdater : public CActive + { +public: + ~CGPSTimeUpdater(); + static CGPSTimeUpdater* New( RPositionServer &aPosServer, + const TPositionModuleId& aModuleId, + CDRMClock* aClock ); + + inline const TPositionModuleId& ModuleId() { return iModuleId; } + + inline const TBool TimeReceived() { return iTimeReceived; } + +private: + CGPSTimeUpdater( RPositionServer &aPosServer, + const TPositionModuleId& aModuleId, + CDRMClock* aClock ); + void ConstructL(); + + void RunL(); + void DoCancel(); + TInt RunError( TInt aError ); + +private: + RPositionServer &iPosServer; + RPositioner iPositioner; + TPositionModuleId iModuleId; + + TPositionSatelliteInfo iSatelliteInfo; + CDRMClock* iClock; + TBool iTimeReceived; + }; + +#endif