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 Center |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_LOCPOSSETTINGSAPPDOCUMENT_H |
|
20 #define C_LOCPOSSETTINGSAPPDOCUMENT_H |
|
21 |
|
22 // System Includes |
|
23 #include <AknDoc.h> |
|
24 |
|
25 // Forward Declarations |
|
26 class CEikAppUi; |
|
27 |
|
28 /** |
|
29 * Positioning Settings Application Document Class |
|
30 * |
|
31 * @lib locpossettingsapp.exe |
|
32 * @since S60 v 5.0 |
|
33 */ |
|
34 class CLocPosSettingsAppDocument : public CAknDocument |
|
35 { |
|
36 public: |
|
37 /** |
|
38 * Two-phased constructor. |
|
39 * @param CEikApplication& EikApplication reference |
|
40 * @return pointer to CLocPosSettingsAppDocument |
|
41 */ |
|
42 static CLocPosSettingsAppDocument* NewL(CEikApplication& aApp); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 virtual ~CLocPosSettingsAppDocument(); |
|
48 |
|
49 private: |
|
50 /** |
|
51 * Overloaded C++ constructor |
|
52 */ |
|
53 CLocPosSettingsAppDocument(CEikApplication& aApp); |
|
54 |
|
55 /** |
|
56 * Second phase of the two phase constuctor |
|
57 */ |
|
58 void ConstructL(); |
|
59 |
|
60 private: // Inherited from Base classes |
|
61 /** |
|
62 * From CEikDocument, create CLocPosSettingsAppUi "App UI" object. |
|
63 */ |
|
64 CEikAppUi* CreateAppUiL(); |
|
65 }; |
|
66 |
|
67 #endif // C_LOCPOSSETTINGSAPPDOCUMENT_H |
|