equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2005 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 * See class description below |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __LANDMARKS_APPLICATION_H__ |
|
21 #define __LANDMARKS_APPLICATION_H__ |
|
22 |
|
23 |
|
24 #include <eikapp.h> |
|
25 |
|
26 |
|
27 |
|
28 /** |
|
29 * An instance of CLandmarksApplication is the application part of the Eikon |
|
30 * application framework for the Landmarks reference application |
|
31 */ |
|
32 class CLandmarksApplication : public CEikApplication |
|
33 { |
|
34 public: // from CEikApplication |
|
35 |
|
36 /** |
|
37 * AppDllUid returns the application DLL UID value. |
|
38 * |
|
39 * @return the UID of this Application/Dll |
|
40 */ |
|
41 TUid AppDllUid() const; |
|
42 |
|
43 protected: // from CEikApplication |
|
44 |
|
45 /** |
|
46 * CreateDocumentL creates a CApaDocument object and return a pointer to it |
|
47 * |
|
48 * @return a pointer to the created document |
|
49 */ |
|
50 CApaDocument* CreateDocumentL(); |
|
51 |
|
52 }; |
|
53 |
|
54 #endif // __LANDMARKS_APPLICATION_H__ |
|
55 |
|
56 |