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: Creates info objects asynchronously |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_APPMNGR2INFOMAKER_H |
|
20 #define C_APPMNGR2INFOMAKER_H |
|
21 |
|
22 #include <e32base.h> // CActive |
|
23 |
|
24 class CAppMngr2Runtime; |
|
25 class MAppMngr2InfoMakerObserver; |
|
26 class RFs; |
|
27 |
|
28 |
|
29 class CAppMngr2InfoMaker : public CActive |
|
30 { |
|
31 public: // constructor and destructor |
|
32 CAppMngr2InfoMaker( CAppMngr2Runtime& aPlugin, MAppMngr2InfoMakerObserver& aObserver, |
|
33 RFs& aFs ); |
|
34 ~CAppMngr2InfoMaker(); |
|
35 |
|
36 public: // new functions |
|
37 const TUid RuntimeUid() const; |
|
38 |
|
39 protected: // data |
|
40 CAppMngr2Runtime& iPlugin; |
|
41 MAppMngr2InfoMakerObserver& iObserver; |
|
42 RFs& iFs; |
|
43 }; |
|
44 |
|
45 #endif // C_APPMNGR2INFOMAKER_H |
|
46 |