equal
deleted
inserted
replaced
|
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __HELLOWORLDBASICAPPLICATION_H__ |
|
17 #define __HELLOWORLDBASICAPPLICATION_H__ |
|
18 |
|
19 |
|
20 #include <aknapp.h> |
|
21 |
|
22 /** |
|
23 * CHelloWorldBasicApplication application class. |
|
24 * Provides factory to create concrete document object. |
|
25 * An instance of CHelloWorldBasicApplication is the application part of the |
|
26 * AVKON application framework for the HelloWorldBasic example application. |
|
27 */ |
|
28 class CHelloWorldBasicApplication : public CAknApplication |
|
29 { |
|
30 public: |
|
31 /** |
|
32 * From CApaApplication |
|
33 * @return Application's UID (KUidHelloWorldBasicApp). |
|
34 * TUid AppDllUid() const; |
|
35 */ |
|
36 TUid AppDllUid() const; |
|
37 |
|
38 protected: |
|
39 /** |
|
40 * From CApaApplication |
|
41 * Creates CHelloWorldBasicDocument document object. The returned |
|
42 * pointer in not owned by the CHelloWorldBasicApplication object. |
|
43 * @return A pointer to the created document object. |
|
44 */ |
|
45 CApaDocument* CreateDocumentL(); |
|
46 }; |
|
47 |
|
48 #endif // __HELLOWORLDBASICAPPLICATION_H__ |