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