equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Application class of VCommandManager |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VCMANAGERAPP_H |
|
20 #define VCMANAGERAPP_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <aknapp.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // UID of the application |
|
28 const TUid KUidVcManager = { 0x102818E7 }; |
|
29 |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * CVCommandManagerApp application class. |
|
35 * Provides factory to create concrete document object. |
|
36 * |
|
37 */ |
|
38 class CVCommandManagerApp : public CAknApplication |
|
39 { |
|
40 |
|
41 private: // Functions from base classes |
|
42 |
|
43 /** |
|
44 * From CApaApplication |
|
45 * @return A pointer to the created document object. |
|
46 */ |
|
47 CApaDocument* CreateDocumentL(); |
|
48 |
|
49 /** |
|
50 * From CApaApplication, returns application's UID. |
|
51 * @return The value of KUidVcManager. |
|
52 */ |
|
53 TUid AppDllUid() const; |
|
54 }; |
|
55 |
|
56 #endif // VCMANAGERAPP_H |
|
57 |
|
58 // End of file |