📄 basicdrawingdocument.cpp
字号:
/**
*
* @brief Definition of CBasicDrawingDocument
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class includes
#include "BasicDrawingDocument.h"
// User includes
#include "BasicDrawingAppUi.h" // CBasicDrawingAppUi
// ================= MEMBER FUNCTIONS =======================
/**
* Constructs the document for aApp
*
* @param aApp for which the document is constructed
*/
CBasicDrawingDocument::CBasicDrawingDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
/**
* Symbian OS 2nd phase constructor.
* This is an empty implementation.
*/
void CBasicDrawingDocument::ConstructL()
{
}
/**
* Symbian OS 2 phase constructor.
* Constructs the CBasicDrawingDocument using the constructor and the ConstructL
* method.
* @param aApp for which the CBasicDrawingDocument is constructed
* @return The newly constructed CBasicDrawingDocument
*/
CBasicDrawingDocument* CBasicDrawingDocument::NewL(CEikApplication& aApp)
{
CBasicDrawingDocument* self = new (ELeave) CBasicDrawingDocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::Pop(self);
return self;
}
/**
* Creates the AppUi for this document.
* @return The newly constructed AppUi
*/
CEikAppUi* CBasicDrawingDocument::CreateAppUiL()
{
return new (ELeave) CBasicDrawingAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -