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