📄 s60mmflabdocument.cpp
字号:
// Copyright (c) 2006 Nokia Corporation.
// INCLUDE FILES
#include "S60MMFLabDocument.h"
#include "S60MMFLabAppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CS60MMFLabDocument::CS60MMFLabDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CS60MMFLabDocument::~CS60MMFLabDocument()
{
}
// EPOC default constructor can leave.
void CS60MMFLabDocument::ConstructL()
{
}
// Two-phased constructor.
CS60MMFLabDocument* CS60MMFLabDocument::NewL(
CEikApplication& aApp) // CS60MMFLabApp reference
{
CS60MMFLabDocument* self = new (ELeave) CS60MMFLabDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CS60MMFLabDocument::CreateAppUiL()
// constructs CS60MMFLabAppUi
// ----------------------------------------------------
//
CEikAppUi* CS60MMFLabDocument::CreateAppUiL()
{
return new (ELeave) CS60MMFLabAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -