📄 dirscraccapp.cpp
字号:
/*
* ============================================================================
* Name : CDirScrAccApp from DirScrAccApp.cpp
* Part of : DirScrAcc
* Created : 06/11/2003 by Forum Nokia
* Implementation notes:
*
* Initial content was generated by Nokia Series 60 AppWizard.
* Version :
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "DirScrAccApp.h"
#include "DirScrAccDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CDirScrAccApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CDirScrAccApp::AppDllUid() const
{
return KUidDirScrAcc;
}
// ---------------------------------------------------------
// CDirScrAccApp::CreateDocumentL()
// Creates CDirScrAccDocument object
// ---------------------------------------------------------
//
CApaDocument* CDirScrAccApp::CreateDocumentL()
{
return CDirScrAccDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CDirScrAccApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CDirScrAccApp;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for Symbian Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -