Update contrib.
1 // Copyright (c) 2004-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Defines TScheduleEntry hierachy:
15 // - const classes which tell you the next time they're due
16 // - CSchedule is an aggregate of TScheduleEntry objects
20 #if !defined(__SCHENTRY_H__)
21 #define __SCHENTRY_H__
35 friend class ScheduleEntryFactory;
38 //returns the next due time for this schedule entry.
39 const TTsTime& NextScheduledTime(const TTsTime& aTime);
40 const TTsTime& DueTime() const;
41 const TScheduleEntryInfo2& Info() const;
46 TScheduleEntry(TScheduleEntryInfo2& aInfo);
48 virtual void CalculateNextPossibleRunDate(TTime& aTime) const = 0 ;
51 TSglQueLink iLink; // queue management
52 TScheduleEntryInfo2 iEntryInfo;
59 class ScheduleEntryFactory
62 static TScheduleEntry* CreateL(TScheduleEntryInfo2& aInfo);