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