equal
deleted
inserted
replaced
|
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 "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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 |
|
18 /** |
|
19 |
|
20 |
|
21 Gets off-peak times settings. |
|
22 |
|
23 @return Off-peak times settings |
|
24 */ |
|
25 |
|
26 inline CMsvOffPeakTimes& CMsvScheduleSend::OffPeakTimes() const |
|
27 { |
|
28 return *iOffPeakTimes; |
|
29 } |
|
30 |
|
31 |
|
32 /** |
|
33 Gets scheduler settings. |
|
34 |
|
35 @return Scheduler settings |
|
36 */ |
|
37 |
|
38 inline CMsvScheduleSettings& CMsvScheduleSend::ScheduleSettings() const |
|
39 { |
|
40 return *iSettings; |
|
41 } |
|
42 |
|
43 |
|
44 /** |
|
45 Gets action-on-sending-error settings. |
|
46 |
|
47 @return Action-on-sending-error settings |
|
48 */ |
|
49 |
|
50 inline CMsvSendErrorActions& CMsvScheduleSend::SendErrorActions() const |
|
51 { |
|
52 return *iErrorActions; |
|
53 } |
|
54 |
|
55 |
|
56 /** |
|
57 Gets System Agent conditions that must be satisfied before a sending attempt. |
|
58 |
|
59 @return System Agent conditions |
|
60 */ |
|
61 |
|
62 inline CMsvSysAgentActions& CMsvScheduleSend::AgentActions() const |
|
63 { |
|
64 return *iAgentActions; |
|
65 } |