equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: |
|
15 * Postcard Application class definition. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef _POSTCARDAPP_H |
|
22 #define _POSTCARDAPP_H |
|
23 |
|
24 // ========== INCLUDE FILES ================================ |
|
25 |
|
26 #include <aknapp.h> // CAknApplication |
|
27 |
|
28 // FORWARD DECLARATION |
|
29 |
|
30 class CApaAppServer; |
|
31 |
|
32 /** |
|
33 * CPostcardApp |
|
34 * |
|
35 * @lib postcard.exe |
|
36 * @since 3.0 |
|
37 */ |
|
38 class CPostcardApplication : public CAknApplication |
|
39 { |
|
40 |
|
41 private: // From CEikApplication |
|
42 |
|
43 /** |
|
44 * Create CEditorDocument document object. |
|
45 */ |
|
46 CApaDocument* CreateDocumentL(); // abstract in CEikApplication |
|
47 |
|
48 /** |
|
49 * Called by CEikonEnv when new server application is created |
|
50 */ |
|
51 void NewAppServerL( CApaAppServer*& aAppServer ); |
|
52 |
|
53 private: // From CApaApplication (via CEikApplication) |
|
54 |
|
55 /** |
|
56 * Return KUideditor. |
|
57 */ |
|
58 TUid AppDllUid() const; // abstract in CApaApplication |
|
59 |
|
60 }; |
|
61 |
|
62 #endif // _POSTCARDAPP_H |
|
63 |
|
64 // End of file |