-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileListApp.cpp
More file actions
66 lines (57 loc) · 1.81 KB
/
FileListApp.cpp
File metadata and controls
66 lines (57 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* ============================================================================
* Name : CFileListApp from FileListApp.cpp
* Part of : FileList
* Created : 18.12.2002 by Forum Nokia
* Implementation notes:
*
* Initial content was generated by Nokia Series 60 AppWizard.
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "FileListApp.h"
#include "FileListDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CFileListApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CFileListApp::AppDllUid() const
{
return KUidFileList;
}
// ---------------------------------------------------------
// CFileListApp::CreateDocumentL()
// Creates CFileListDocument object
// ---------------------------------------------------------
//
CApaDocument* CFileListApp::CreateDocumentL()
{
return CFileListDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CFileListApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CFileListApp;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for Symbian Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File