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: Application Document |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef ABOUTDOCUMENT_H |
|
20 #define ABOUTDOCUMENT_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <AknDoc.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CEikAppUi; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * CAboutDocument application class. |
|
34 */ |
|
35 class CAboutDocument : public CAknDocument |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 /** |
|
39 * Two-phased constructor. |
|
40 */ |
|
41 static CAboutDocument* NewL( CEikApplication& aApp ); |
|
42 |
|
43 /** |
|
44 * Destructor. |
|
45 */ |
|
46 virtual ~CAboutDocument(); |
|
47 |
|
48 private: |
|
49 |
|
50 /** |
|
51 * Constructor. |
|
52 */ |
|
53 CAboutDocument( CEikApplication& aApp ); |
|
54 |
|
55 /** |
|
56 * From CEikDocument, create CAboutAppUi "App UI" object. |
|
57 */ |
|
58 CEikAppUi* CreateAppUiL(); |
|
59 }; |
|
60 |
|
61 #endif |
|
62 |
|
63 // End of File |
|
64 |