application.cpp
来自「《SymbianOSC手机应用开发》源码」· C++ 代码 · 共 23 行
CPP
23 行
#include "tp-viewtest.h"
#include "Application.h"
#include "Document.h"
////////////////////////////////////////////////////////////////
//
// Application class, CApplication
//
////////////////////////////////////////////////////////////////
TUid CApplication::AppDllUid() const
{
return KTvUid;
}
CApaDocument* CApplication::CreateDocumentL()
{
// Construct the document using its NewL() function, rather
// than using new(ELeave), because it requires two-phase
// construction.
return new(ELeave) CDocument(*this);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?