equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __LAUNCHER_APPLICATION_H__ |
|
21 #define __LAUNCHER_APPLICATION_H__ |
|
22 |
|
23 #include <aknapp.h> |
|
24 |
|
25 |
|
26 /*! |
|
27 @class CLauncherApplication |
|
28 |
|
29 @discussion An instance of CLauncherApplication is the application part of the AVKON |
|
30 application framework for the Launcher example application |
|
31 */ |
|
32 class CLauncherApplication : public CAknApplication |
|
33 { |
|
34 public: // from CApaApplication |
|
35 |
|
36 /*! |
|
37 @function AppDllUid |
|
38 |
|
39 @discussion Returns the application DLL UID value |
|
40 @result the UID of this Application/Dll |
|
41 */ |
|
42 TUid AppDllUid() const; |
|
43 |
|
44 protected: // from CEikApplication |
|
45 /*! |
|
46 @function CreateDocumentL |
|
47 |
|
48 @discussion Create a CApaDocument object and return a pointer to it |
|
49 @result a pointer to the created document |
|
50 */ |
|
51 CApaDocument* CreateDocumentL(); |
|
52 }; |
|
53 |
|
54 #endif // __LAUNCHER_APPLICATION_H__ |