📄 preinstall4document.cpp
字号:
/*
============================================================================
Name : PreInstall4Document.cpp
Author :
Copyright : 35
Description : CPreInstall4Document implementation
============================================================================
*/
// INCLUDE FILES
#include "PreInstall4AppUi.h"
#include "PreInstall4Document.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CPreInstall4Document::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CPreInstall4Document* CPreInstall4Document::NewL(CEikApplication& aApp)
{
CPreInstall4Document* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
// -----------------------------------------------------------------------------
// CPreInstall4Document::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CPreInstall4Document* CPreInstall4Document::NewLC(CEikApplication& aApp)
{
CPreInstall4Document* self = new ( ELeave ) CPreInstall4Document( aApp );
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
// -----------------------------------------------------------------------------
// CPreInstall4Document::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CPreInstall4Document::ConstructL()
{
// No implementation required
}
// -----------------------------------------------------------------------------
// CPreInstall4Document::CPreInstall4Document()
// C++ default constructor can NOT contain any code, that might leave.
// -----------------------------------------------------------------------------
//
CPreInstall4Document::CPreInstall4Document(CEikApplication& aApp) :
CAknDocument(aApp)
{
// No implementation required
}
// ---------------------------------------------------------------------------
// CPreInstall4Document::~CPreInstall4Document()
// Destructor.
// ---------------------------------------------------------------------------
//
CPreInstall4Document::~CPreInstall4Document()
{
// No implementation required
}
// ---------------------------------------------------------------------------
// CPreInstall4Document::CreateAppUiL()
// Constructs CreateAppUi.
// ---------------------------------------------------------------------------
//
CEikAppUi* CPreInstall4Document::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it;
// the framework takes ownership of this object
return new ( ELeave )CPreInstall4AppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -