equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2003 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: Header file for Application class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CCMAPPLICATION_H |
|
22 #define CCMAPPLICATION_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <aknapp.h> |
|
26 |
|
27 // CONSTANTS |
|
28 const TUid KUidConfigurationManager = { 0x10204338 }; // UID of the application |
|
29 |
|
30 |
|
31 // MACROS |
|
32 // None |
|
33 |
|
34 // DATA TYPES |
|
35 // None |
|
36 |
|
37 // FUNCTION PROTOTYPES |
|
38 // None |
|
39 |
|
40 // FORWARD DECLARATIONS |
|
41 // None |
|
42 |
|
43 // CLASS DECLARATION |
|
44 // None |
|
45 |
|
46 /** |
|
47 * Application class. |
|
48 * Provides factory to create concrete document object. |
|
49 * |
|
50 * @lib ConfManager.app |
|
51 * @since 2.0 |
|
52 */ |
|
53 |
|
54 class CCMApplication : public CAknApplication |
|
55 { |
|
56 private: // Functions from base classes |
|
57 |
|
58 /** |
|
59 * From CApaApplication Creates COCDocument document object. |
|
60 * @since 2.0 |
|
61 * @return pointer to created document. |
|
62 */ |
|
63 CApaDocument* CreateDocumentL(); |
|
64 |
|
65 /** |
|
66 * From CApaApplication Returns application's UID. |
|
67 * @since 2.0 |
|
68 * @return KUidConfigurationManager |
|
69 */ |
|
70 TUid AppDllUid() const; |
|
71 }; |
|
72 |
|
73 #endif // CCMAPPLICATION_H |
|
74 |
|
75 // End of File |
|
76 |