📄 rtxdocument.cpp
字号:
/*
* ============================================================================
* Name : CRTxDocument from RTxDocument.h
* Part of : RTx
* Created : 2003. 08. 15. by (V) - Forum Nokia
* Implementation notes: - standard Avkon document class source
*
* Version :
* Copyright: Forum Nokia
* ============================================================================
*/
// INCLUDE FILES
#include "RTxDocument.h"
#include "RTxAppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CRTxDocument::CRTxDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CRTxDocument::~CRTxDocument()
{
}
// EPOC default constructor can leave.
void CRTxDocument::ConstructL()
{
}
// Two-phased constructor.
CRTxDocument* CRTxDocument::NewL(
CEikApplication& aApp) // CRTxApp reference
{
CRTxDocument* self = new (ELeave) CRTxDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CRTxDocument::CreateAppUiL()
// constructs CRTxAppUi
// ----------------------------------------------------
//
CEikAppUi* CRTxDocument::CreateAppUiL()
{
return new (ELeave) CRTxAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -