equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 a document for application. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VMDOCUMENT_H |
|
20 #define VMDOCUMENT_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <eikdoc.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class CEikAppUi; |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * CVmDocument application class. |
|
32 * |
|
33 * @lib ?library |
|
34 * @since ?Series60_version |
|
35 */ |
|
36 class CVmDocument : public CEikDocument |
|
37 { |
|
38 public: // Constructors and destructor |
|
39 /** |
|
40 * Two-phased constructor. |
|
41 */ |
|
42 static CVmDocument* NewL( CEikApplication& aApp ); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 virtual ~CVmDocument(); |
|
48 |
|
49 private: |
|
50 /** |
|
51 * Symbian OS default constructor. |
|
52 */ |
|
53 CVmDocument( CEikApplication& aApp ): CEikDocument( aApp ){ } |
|
54 |
|
55 private: |
|
56 /** |
|
57 * From CEikDocument, create CVmAppUi "App UI" object. |
|
58 */ |
|
59 CEikAppUi* CreateAppUiL(); |
|
60 |
|
61 }; |
|
62 |
|
63 #endif // VMDOCUMENT_H |
|
64 |
|
65 // End of File |