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: |
|
15 * Provisioning context list application |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CWPCXAPPUI_H |
|
21 #define CWPCXAPPUI_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <aknviewappui.h> |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class CWPCxContainer; |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * Application UI class. |
|
33 * Provides support for the following features: |
|
34 * - EIKON control architecture |
|
35 * - view architecture |
|
36 * - status pane |
|
37 * |
|
38 */ |
|
39 class CWPCxAppUi : public CAknViewAppUi |
|
40 { |
|
41 public: // // Constructors and destructor |
|
42 |
|
43 /** |
|
44 * EPOC default constructor. |
|
45 */ |
|
46 void ConstructL(); |
|
47 |
|
48 /** |
|
49 * Destructor. |
|
50 */ |
|
51 ~CWPCxAppUi(); |
|
52 |
|
53 private: // from CEikAppUi |
|
54 |
|
55 void HandleCommandL(TInt aCommand); |
|
56 |
|
57 }; |
|
58 |
|
59 #endif |
|
60 |
|
61 // End of File |