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