|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Class which takes care of meeting request related settings. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __CMRUTILSSETTINGSMGR_H__ |
|
22 #define __CMRUTILSSETTINGSMGR_H__ |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 #include <msvstd.h> |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * Class which takes care of meeting request related settings. |
|
34 */ |
|
35 class CMRUtilsSettingsMgr : public CBase |
|
36 { |
|
37 public: // Constructors and destructors |
|
38 |
|
39 /** |
|
40 * Symbian two-phased constructor. |
|
41 * @return instantiated object |
|
42 */ |
|
43 static CMRUtilsSettingsMgr* NewL(); |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 */ |
|
48 ~CMRUtilsSettingsMgr(); |
|
49 |
|
50 public: // New functions |
|
51 |
|
52 /** |
|
53 * @see CMRUtils |
|
54 */ |
|
55 TInt GetDefaultMRMailBoxL( TMsvId& aDefaultBox ); |
|
56 |
|
57 /** |
|
58 * @see CMRUtils |
|
59 */ |
|
60 TInt SetDefaultMRMailBoxL( TMsvId aDefaultBox ); |
|
61 |
|
62 protected: // Constructors and destructors |
|
63 |
|
64 /** |
|
65 * C++ default constructor. |
|
66 */ |
|
67 CMRUtilsSettingsMgr(); |
|
68 |
|
69 /** |
|
70 * Constructor, second phase. |
|
71 */ |
|
72 void ConstructL(); |
|
73 |
|
74 protected: // data |
|
75 }; |
|
76 |
|
77 #endif // __CMRUTILSSETTINGSMGR_H__ |
|
78 |
|
79 // End of File |