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: Declares document for application |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_APPMNGR2DOCUMENT_H |
|
20 #define C_APPMNGR2DOCUMENT_H |
|
21 |
|
22 #include <AknDoc.h> // CAknDocument |
|
23 |
|
24 class CEikAppUi; |
|
25 |
|
26 |
|
27 class CAppMngr2Document : public CAknDocument |
|
28 { |
|
29 public: // constructor and destructor |
|
30 static CAppMngr2Document* NewL( CEikApplication& aApp ); |
|
31 ~CAppMngr2Document(); |
|
32 |
|
33 private: // new functions |
|
34 CAppMngr2Document( CEikApplication& aApp ); |
|
35 void ConstructL(); |
|
36 |
|
37 private: // from CEikDocument |
|
38 CEikAppUi* CreateAppUiL(); |
|
39 }; |
|
40 |
|
41 #endif // C_APPMNGR2DOCUMENT_H |
|
42 |