📄 preinstall4application.cpp
字号:
/*
============================================================================
Name : PreInstall4Application.cpp
Author :
Copyright : 35
Description : Main application class
============================================================================
*/
// INCLUDE FILES
#include "PreInstall4.hrh"
#include "PreInstall4Document.h"
#include "PreInstall4Application.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CPreInstall4Application::CreateDocumentL()
// Creates CApaDocument object
// -----------------------------------------------------------------------------
//
CApaDocument* CPreInstall4Application::CreateDocumentL()
{
// Create an PreInstall4 document, and return a pointer to it
return CPreInstall4Document::NewL(*this);
}
// -----------------------------------------------------------------------------
// CPreInstall4Application::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CPreInstall4Application::AppDllUid() const
{
// Return the UID for the PreInstall4 application
return KUidPreInstall4App;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -