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