equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: calender info extension for mailbox |
|
15 * |
|
16 */ |
|
17 #ifndef CMRCALENDARINFOIMPL_H |
|
18 #define CMRCALENDARINFOIMPL_H |
|
19 |
|
20 #include "cmrcalendarinfo.h" |
|
21 #include "cemailextensionbase.h" |
|
22 |
|
23 /** |
|
24 * Implementation of calender info |
|
25 */ |
|
26 NONSHARABLE_CLASS( CMRCalendarInfoImpl ) : public CMRCalendarInfo |
|
27 { |
|
28 public: |
|
29 |
|
30 CMRCalendarInfoImpl(); |
|
31 |
|
32 ~CMRCalendarInfoImpl(); |
|
33 |
|
34 public: // from CMRCalendarInfo |
|
35 /** |
|
36 * Return name of calendar database used with sync. |
|
37 */ |
|
38 virtual void GetCalendarDatabaseIdL( TCalFileId& aId ) const; |
|
39 |
|
40 /** |
|
41 * Sets calender database name. |
|
42 */ |
|
43 virtual void SetCalendarDatabaseIdL( const TCalFileId& aId ); |
|
44 |
|
45 private: |
|
46 // calender database name. |
|
47 TCalFileId iDatabaseId; |
|
48 }; |
|
49 |
|
50 #endif // CMRCALENDARINFOIMPL_H |