First public contribution.
1 // Copyright (c) 2001-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 // simple accessors/querying functions
19 inline TInt CSchedule::Id() const
22 inline const TTsTime& CSchedule::DueTime() const
25 inline TBool CSchedule::Persists() const
28 inline TBool CSchedule::Enabled() const
31 inline void CSchedule::SetEnabled(TBool aEnabled)
32 {iEnabled = aEnabled;}
34 inline TSglQue<TScheduledTask>* CSchedule::Tasks()
37 inline TBool CSchedule::HasTasks() const
38 {return !(iTaskList.IsEmpty());}
40 inline const TDesC& CSchedule::Name() const
43 inline TScheduleType CSchedule::Type() const
45 if(iConditions.Count()==0)
48 return EConditionSchedule;
51 inline void CSchedule::CheckAccessAllowedL(const RMessagePtr2& aMessage) const
53 if(!IsAccessAllowed(aMessage))
54 User::Leave(KErrPermissionDenied);