allmlistsdocument.cpp
来自「基于Symbian OS的手机开发与应用实践第11章代码。主要讲编辑框的使用。」· C++ 代码 · 共 58 行
CPP
58 行
/*
* ============================================================================
* Name : CAllMListsDocument from AllMListsDocument.h
* Part of : AllMLists
* Created : 16.03.2006 by ToBeReplacedByAuthor
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "AllMListsDocument.h"
#include "AllMListsAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CAllMListsDocument::CAllMListsDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CAllMListsDocument::~CAllMListsDocument()
{
}
// EPOC default constructor can leave.
void CAllMListsDocument::ConstructL()
{
}
// Two-phased constructor.
CAllMListsDocument* CAllMListsDocument::NewL(
CEikApplication& aApp) // CAllMListsApp reference
{
CAllMListsDocument* self = new (ELeave) CAllMListsDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CAllMListsDocument::CreateAppUiL()
// constructs CAllMListsAppUi
// ----------------------------------------------------
//
CEikAppUi* CAllMListsDocument::CreateAppUiL()
{
return new (ELeave) CAllMListsAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?