|
1 /* |
|
2 * Copyright (c) 2008 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: This file contains the header file of the CIaupdateLauncherApplication class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __IAUPDATELAUNCHERAPPLICATION_H__ |
|
21 #define __IAUPDATELAUNCHERAPPLICATION_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include <aknapp.h> |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * CIaupdateLauncherApplication application class. |
|
30 * Provides factory to create concrete document object. |
|
31 * An instance of CIaupdateLauncherApplication is the application part of the |
|
32 * AVKON application framework for the IAupdate client launcher application. |
|
33 */ |
|
34 class CIAUpdateLauncherApplication : public CAknApplication |
|
35 { |
|
36 public: // Functions from base classes |
|
37 |
|
38 /** |
|
39 * From CApaApplication, AppDllUid. |
|
40 * @return Application's UID (KUidHelloWorldBasicApp). |
|
41 */ |
|
42 TUid AppDllUid() const; |
|
43 |
|
44 protected: // Functions from base classes |
|
45 |
|
46 /** |
|
47 * From CApaApplication, CreateDocumentL. |
|
48 * Creates CIaupdateLauncherDocument document object. The returned |
|
49 * pointer in not owned by the CIaupdateLauncherApplication object. |
|
50 * @return A pointer to the created document object. |
|
51 */ |
|
52 CApaDocument* CreateDocumentL(); |
|
53 }; |
|
54 |
|
55 #endif // __IAUPDATELAUNCHERAPPLICATION_H__ |
|
56 |
|
57 // End of File |
|
58 |