|
1 /* |
|
2 * Copyright (c) 2008 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: Provides static information about appointment lists and creates |
|
15 * appointment list adapters. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CPIMAPPTADAPTERMANAGER_H |
|
21 #define CPIMAPPTADAPTERMANAGER_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "cpimeventadaptermanager.h" |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * PIM Appt Adapter Manager class |
|
30 */ |
|
31 NONSHARABLE_CLASS(CPIMApptAdapterManager): public CPIMEventAdapterManager |
|
32 { |
|
33 public: // Constructors and destructor |
|
34 |
|
35 /** |
|
36 * Two-phased constructor. |
|
37 */ |
|
38 static CPIMApptAdapterManager* NewL(const TDesC& aListName); |
|
39 |
|
40 /** |
|
41 * Destructor. |
|
42 */ |
|
43 ~CPIMApptAdapterManager(); |
|
44 |
|
45 public: // MPIMEventAdapterManager |
|
46 |
|
47 /** |
|
48 * Provides access to the \ref MPIMAdapterManager representation of |
|
49 * this object. |
|
50 * |
|
51 * @return The \ref MPIMAdapterManager representation of this object. |
|
52 */ |
|
53 MPIMAdapterManager* GetAdapterManager(); |
|
54 |
|
55 private: |
|
56 |
|
57 /** |
|
58 * C++ default constructor. |
|
59 */ |
|
60 CPIMApptAdapterManager(); |
|
61 |
|
62 /** |
|
63 * By default Symbian 2nd phase constructor is private. |
|
64 */ |
|
65 void ConstructL(const TDesC& aListName); |
|
66 |
|
67 }; |
|
68 |
|
69 #endif // CPIMAPPTADAPTERMANAGER_H |
|
70 // End of File |
|
71 |