1 /// Copyright (c) 1999-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 /// which accompanies this distribution, and is available
6 /// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 /// Initial Contributors:
9 /// Nokia Corporation - initial contribution.
14 /// All rights reserved.
15 /// This component and the accompanying materials are made available
16 /// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
17 /// which accompanies this distribution, and is available
18 /// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
19 /// Initial Contributors:
20 /// Nokia Corporation - initial contribution.
32 @return The entry's ID.
35 inline const TMsvId CMsvScheduledEntry::Id() const
42 Gets the entry's OffPeak() flag.
44 @return The entry's OffPeak() flag.
47 inline const TBool CMsvScheduledEntry::OffPeak() const
49 return iEntry.OffPeak();
54 Gets the entry's iMtm data member.
56 @return The entry's iMtm data member.
59 inline const TUid CMsvScheduledEntry::Mtm() const
66 Gets the entry's iDate member.
68 @return Entry's iDate member.
71 inline const TTime& CMsvScheduledEntry::ScheduleDate() const
78 Sets the entry's iDate member.
80 @param aDate Entry's iDate member.
83 inline void CMsvScheduledEntry::SetScheduleDate(const TTime& aDate)
90 Gets the entry's Scheduled() flag.
92 @return The entry's Scheduled() flag.
95 inline const TBool CMsvScheduledEntry::Scheduled() const
97 return iEntry.Scheduled();
102 Sets the entry's Scheduled() flag.
104 @param aScheduled The entry's Scheduled() flag.
107 inline void CMsvScheduledEntry::SetScheduled(const TBool aScheduled)
109 iEntry.SetScheduled(aScheduled);
114 Gets the entry's iError data member.
116 @return The entry's iError data member.
119 inline const TInt CMsvScheduledEntry::Error() const
121 return iEntry.iError;
126 Gets the entry's SendingState() flag.
128 @return The entry's SendingState() flag.
131 inline const TInt CMsvScheduledEntry::SendingState() const
133 return iEntry.SendingState();
138 Sets the entry's SendingState() flag.
141 The entry's SendingState() flag.
144 inline void CMsvScheduledEntry::SetSendingState(TInt aState)
146 iEntry.SetSendingState(aState);
151 Sets the entry's Failed() flag.
154 The entry's Failed() flag.
157 inline void CMsvScheduledEntry::SetFailed(const TBool aFail)
159 iEntry.SetFailed(aFail);
164 Gets the entry's Failed() flag.
166 @return The entry's Failed() flag.
169 inline const TBool CMsvScheduledEntry::Failed() const
171 return iEntry.Failed();