equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 the License "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: Definition of CPushViewerApplication. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef PUSHVIEWERAPP_H |
|
21 #define PUSHVIEWERAPP_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <aknapp.h> |
|
26 |
|
27 // FORWARD DECLARATION |
|
28 |
|
29 class CApaAppServer; |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * Push Viewer application |
|
35 */ |
|
36 class CPushViewerApplication : public CAknApplication |
|
37 { |
|
38 private: // Functions from base classes |
|
39 |
|
40 /** |
|
41 * From CApaApplication. |
|
42 */ |
|
43 TUid AppDllUid() const; |
|
44 |
|
45 /** |
|
46 * From CEikApplication. |
|
47 */ |
|
48 CApaDocument* CreateDocumentL(); |
|
49 |
|
50 /* |
|
51 * From CEikApplication. |
|
52 */ |
|
53 void NewAppServerL( CApaAppServer*& aAppServer ); |
|
54 }; |
|
55 |
|
56 #endif // PUSHVIEWERAPP_H |
|
57 |
|
58 // End of File |