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