equal
deleted
inserted
replaced
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: AppInfo represents installed application |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_APPMNGR2APPINFO_H |
|
20 #define C_APPMNGR2APPINFO_H |
|
21 |
|
22 #include "appmngr2infobase.h" // CAppMngr2InfoBase |
|
23 |
|
24 /** |
|
25 * CAppMngr2AppInfo represents installed application. |
|
26 * |
|
27 * Runtime plug-in must define it's own CAppMngr2AppInfo derived class |
|
28 * to provide the actual functionality for abstract functions defined in |
|
29 * CAppMngr2InfoBase class. |
|
30 * |
|
31 * @lib appmngr2pluginapi.lib |
|
32 * @since S60 v5.1 |
|
33 */ |
|
34 class CAppMngr2AppInfo : public CAppMngr2InfoBase |
|
35 { |
|
36 public: // constructor and destructor |
|
37 IMPORT_C void ConstructL(); |
|
38 IMPORT_C ~CAppMngr2AppInfo(); |
|
39 |
|
40 protected: // new functions |
|
41 /** |
|
42 * Exported protected constructor for derived classes |
|
43 */ |
|
44 IMPORT_C CAppMngr2AppInfo( CAppMngr2Runtime& aRuntime, RFs& aFsSession ); |
|
45 }; |
|
46 |
|
47 #endif // C_APPMNGR2APPINFO_H |
|
48 |
|