sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Defines TScheduleEntry hierachy: sl@0: // - const classes which tell you the next time they're due sl@0: // - CSchedule is an aggregate of TScheduleEntry objects sl@0: // sl@0: // sl@0: sl@0: #if !defined(__SCHENTRY_H__) sl@0: #define __SCHENTRY_H__ sl@0: sl@0: //System Includes sl@0: #include sl@0: sl@0: //User Includes sl@0: #include "SCHINFO.H" sl@0: sl@0: /** sl@0: TScheduleEntry sl@0: @internalComponent sl@0: */ sl@0: class TScheduleEntry sl@0: { sl@0: friend class ScheduleEntryFactory; sl@0: sl@0: public: sl@0: //returns the next due time for this schedule entry. sl@0: const TTsTime& NextScheduledTime(const TTsTime& aTime); sl@0: const TTsTime& DueTime() const; sl@0: const TScheduleEntryInfo2& Info() const; sl@0: sl@0: static TInt Offset(); sl@0: sl@0: protected: sl@0: TScheduleEntry(TScheduleEntryInfo2& aInfo); sl@0: private: sl@0: virtual void CalculateNextPossibleRunDate(TTime& aTime) const = 0 ; sl@0: sl@0: private: sl@0: TSglQueLink iLink; // queue management sl@0: TScheduleEntryInfo2 iEntryInfo; sl@0: TTsTime iDueTime; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class ScheduleEntryFactory sl@0: { sl@0: public: sl@0: static TScheduleEntry* CreateL(TScheduleEntryInfo2& aInfo); sl@0: }; sl@0: sl@0: sl@0: #endif