📄 greg2document.cpp
字号:
/*
* ============================================================================
* Name : CGreg2Document from Greg2Document.h
* Part of : greg2
* Created : 12/11/2002 by
* Implementation notes:
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "Greg2Document.h"
#include "Greg2AppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CGreg2Document::CGreg2Document(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CGreg2Document::~CGreg2Document()
{
}
// EPOC default constructor can leave.
void CGreg2Document::ConstructL()
{
}
// Two-phased constructor.
CGreg2Document* CGreg2Document::NewL(
CEikApplication& aApp) // CGreg2App reference
{
CGreg2Document* self = new (ELeave) CGreg2Document( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CGreg2Document::CreateAppUiL()
// constructs CGreg2AppUi
// ----------------------------------------------------
//
CEikAppUi* CGreg2Document::CreateAppUiL()
{
return new (ELeave) CGreg2AppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -