equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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: Calendar Application |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CALENAPP_H |
|
21 #define CALENAPP_H |
|
22 |
|
23 // Include files |
|
24 #include <aknapp.h> // CAknApplication |
|
25 |
|
26 /** |
|
27 * CCalenApplication class definition |
|
28 * Provides factory to create concrete document object. |
|
29 */ |
|
30 |
|
31 NONSHARABLE_CLASS( CCalenApplication ) : public CAknApplication |
|
32 { |
|
33 private: |
|
34 /** |
|
35 * From CApaApplication, creates CCalenDocument document object. |
|
36 * @return A pointer to the created document object. |
|
37 */ |
|
38 CApaDocument* CreateDocumentL(); |
|
39 |
|
40 /** |
|
41 * From CApaApplication, returns the application UID |
|
42 * @return Calendar application UID |
|
43 */ |
|
44 TUid AppDllUid() const; |
|
45 }; |
|
46 |
|
47 #endif // CALENAPP_H |
|
48 |
|
49 // End of File |
|
50 |