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