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 "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: Implementation of applicationmanagement components |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef RFSAPPMGMTPLUGIN_H |
|
22 #define RFSAPPMGMTPLUGIN_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 |
|
27 #include "rfsPlugin.h" |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 class CRfsAppMgmtPlugin: public CRFSPlugin |
|
32 { |
|
33 public: |
|
34 |
|
35 /** |
|
36 * Two-phased constructor. |
|
37 * @param aInitParams initial parameters |
|
38 */ |
|
39 static CRfsAppMgmtPlugin* NewL(TAny* aInitParams); |
|
40 |
|
41 /** |
|
42 * Destructor. |
|
43 */ |
|
44 virtual ~CRfsAppMgmtPlugin(); |
|
45 |
|
46 /** |
|
47 * |
|
48 * @param |
|
49 */ |
|
50 void RestoreFactorySettingsL( const TRfsReason aType ); |
|
51 |
|
52 /** |
|
53 * |
|
54 * @param |
|
55 */ |
|
56 void GetScriptL( const TRfsReason aType, TDes& aPath ); |
|
57 |
|
58 /** |
|
59 * |
|
60 * @param |
|
61 */ |
|
62 void ExecuteCustomCommandL( const TRfsReason aType, TDesC& aCommand ); |
|
63 private: |
|
64 |
|
65 /** |
|
66 * C++ default constructor. |
|
67 */ |
|
68 CRfsAppMgmtPlugin(); |
|
69 |
|
70 /** |
|
71 * Constructor. |
|
72 * @param aInitParams initial parameters |
|
73 */ |
|
74 CRfsAppMgmtPlugin(TAny* aInitParams); |
|
75 |
|
76 /** |
|
77 * Constructor |
|
78 */ |
|
79 void ConstructL(); |
|
80 }; |
|
81 |
|
82 |
|
83 |
|
84 #endif // RFSAPPMGMTPLUGIN_H |
|
85 |
|
86 // End of File |