equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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 to launch Positioning Settings for Location Centre |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_LOCPOSSETTINGSAPPUI_H |
|
20 #define C_LOCPOSSETTINGSAPPUI_H |
|
21 |
|
22 // System Includes |
|
23 #include <eikapp.h> |
|
24 #include <eikdoc.h> |
|
25 #include <e32std.h> |
|
26 #include <coeccntx.h> |
|
27 #include <aknappui.h> |
|
28 |
|
29 // User Includes |
|
30 #include "locsysuiview.h" |
|
31 |
|
32 /** |
|
33 * Application UI class |
|
34 * Provides support for the following features: |
|
35 * - EIKON control architecture |
|
36 * |
|
37 * @lib locpossettingsapp.exe |
|
38 * @since S60 v 5.0 |
|
39 */ |
|
40 class CLosPosSettingsAppUi : public CAknViewAppUi |
|
41 { |
|
42 public: |
|
43 /** |
|
44 * Second phase of the two phase constructor. |
|
45 */ |
|
46 void ConstructL(); |
|
47 |
|
48 /** |
|
49 * Destructor. |
|
50 */ |
|
51 virtual ~CLosPosSettingsAppUi(); |
|
52 |
|
53 public: // Inherited from Base classes |
|
54 /** |
|
55 * Inherited from CAknViewAppUi |
|
56 */ |
|
57 void HandleCommandL(TInt aCommand); |
|
58 }; |
|
59 |
|
60 #endif // C_LOCPOSSETTINGSAPPUI_H |