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 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: Feeds application instance. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef FEEDS_APPLICATION_H |
|
20 #define FEEDS_APPLICATION_H |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 #include <aknapp.h> |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // MACROS |
|
29 |
|
30 // DATA TYPES |
|
31 |
|
32 // FUNCTION PROTOTYPES |
|
33 |
|
34 // FORWARD DECLARATIONS |
|
35 |
|
36 // CLASS DECLARATION |
|
37 |
|
38 |
|
39 /** |
|
40 * Feeds application instance. |
|
41 * |
|
42 * \b Library: FeedsEngine.lib |
|
43 * |
|
44 * @since 3.0 |
|
45 */ |
|
46 class CFeedsApplication: public CAknApplication |
|
47 { |
|
48 public: // Constructor and destructor |
|
49 /** |
|
50 * Constructor |
|
51 */ |
|
52 CFeedsApplication(); |
|
53 |
|
54 /** |
|
55 * Destructor. |
|
56 */ |
|
57 virtual ~CFeedsApplication(); |
|
58 |
|
59 |
|
60 public: // From CAknApplication |
|
61 /** |
|
62 * Returns application's UID. |
|
63 * |
|
64 * @since 3.0 |
|
65 * @return the UID. |
|
66 */ |
|
67 TUid AppDllUid() const; |
|
68 |
|
69 |
|
70 |
|
71 protected: // from CAknApplication |
|
72 /** |
|
73 * Creates CFeedsDocument document object. |
|
74 * |
|
75 * @since 3.0 |
|
76 * @return A pointer to the created document object. |
|
77 */ |
|
78 CApaDocument* CreateDocumentL(); |
|
79 }; |
|
80 |
|
81 #endif // FEEDS_APPLICATION_H |
|
82 |
|
83 // End of File |