|
1 /* |
|
2 * Copyright (c) 2002-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: File Manager application class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CFILEMANAGERAPP_H |
|
20 #define CFILEMANAGERAPP_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <aknapp.h> // CAknApplication |
|
24 |
|
25 // CLASS DECLARATION |
|
26 |
|
27 /** |
|
28 * FileManager application class. |
|
29 * This class is created by the Symbian OS framework by a call to |
|
30 * NewApplication() function when the application is started. The |
|
31 * main purpose of the application class is to create the |
|
32 * application-specific document object (CFileManagerDocument in |
|
33 * this case) via a call to virtual CreateDocumentL(). |
|
34 */ |
|
35 class CFileManagerApplication : public CAknApplication |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 |
|
39 /** |
|
40 * Standard C++ constructor. |
|
41 */ |
|
42 CFileManagerApplication(); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 ~CFileManagerApplication(); |
|
48 |
|
49 public: // From CAknApplication |
|
50 /** |
|
51 * Creates the FileManager document object (CFileManagerDocument). |
|
52 * Called by the application framework. |
|
53 * |
|
54 * @return New FileManager document object (CFileManagerDocument). |
|
55 */ |
|
56 CApaDocument* CreateDocumentL(); |
|
57 |
|
58 /** |
|
59 * @return the UID of this application. |
|
60 */ |
|
61 TUid AppDllUid() const; |
|
62 |
|
63 }; |
|
64 |
|
65 #endif // CFILEMANAGERAPP_H |
|
66 |
|
67 // End of File |