📄 sysinfo60app.cpp
字号:
/*
* ============================================================================
* Name : CSYSINFO60App from SYSINFO60App.cpp
* Part of : SYSINFO60
* Created : 10.05.2003 by Petri-Veikko Alaj鋜vi OH1GIU
* Implementation notes:
*
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright: (c) 2003, Petri-Veikko Alaj鋜vi OH1GIU
* ============================================================================
*/
// INCLUDE FILES
#include "SYSINFO60App.h"
#include "SYSINFO60Document.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CSYSINFO60App::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CSYSINFO60App::AppDllUid() const
{
return KUidSYSINFO60;
}
// ---------------------------------------------------------
// CSYSINFO60App::CreateDocumentL()
// Creates CSYSINFO60Document object
// ---------------------------------------------------------
//
CApaDocument* CSYSINFO60App::CreateDocumentL()
{
return CSYSINFO60Document::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CSYSINFO60App
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CSYSINFO60App;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC 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 + -