equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: This file contains the header file of the CWidgetPreInstaller class. |
|
15 * |
|
16 |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef WIDGETPREINSTALLER_H |
|
22 #define WIDGETPREINSTALLER_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <eikappui.h> |
|
26 #include <SWInstUIPluginAPI.h> |
|
27 |
|
28 |
|
29 // FORWARD DECLARATIONS |
|
30 class CSWInstUIPluginAPI; |
|
31 |
|
32 |
|
33 /** |
|
34 * |
|
35 * @since 3.1 |
|
36 */ |
|
37 class CWidgetPreInstaller : public CEikAppUi |
|
38 { |
|
39 public: // Constructors and destructor |
|
40 |
|
41 /** |
|
42 * C++ default constructor. |
|
43 */ |
|
44 CWidgetPreInstaller(); |
|
45 |
|
46 |
|
47 /** |
|
48 * Destructor. |
|
49 */ |
|
50 virtual ~CWidgetPreInstaller(); |
|
51 |
|
52 public: |
|
53 |
|
54 protected: |
|
55 |
|
56 /** |
|
57 * 2nd phase constructor. |
|
58 */ |
|
59 void ConstructL(); |
|
60 |
|
61 private: |
|
62 |
|
63 /** |
|
64 * Perform the pre installation. |
|
65 */ |
|
66 void DoInstallL(); |
|
67 |
|
68 private: // Data |
|
69 |
|
70 /** |
|
71 * File system session. |
|
72 */ |
|
73 RFs iFs; |
|
74 |
|
75 }; |
|
76 |
|
77 #endif // WIDGETPREINSTALLER_H |
|
78 |
|
79 // End of File |