?? helloblankdocument.cpp
字號:
/* Copyright (c) 2003, Symbian Software Ltd. All rights reserved */
#include "HelloBlankAppUi.h"
#include "HelloBlankDocument.h"
CHelloBlankDocument* CHelloBlankDocument::NewL(CEikApplication& aApp)
{
CHelloBlankDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
CHelloBlankDocument* CHelloBlankDocument::NewLC(CEikApplication& aApp)
{
CHelloBlankDocument* self = new (ELeave) CHelloBlankDocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
void CHelloBlankDocument::ConstructL()
{
// No implementation required
}
CHelloBlankDocument::CHelloBlankDocument(CEikApplication& aApp) : CAknDocument(aApp)
{
// No implementation required
}
CHelloBlankDocument::~CHelloBlankDocument()
{
// No implementation required
}
CEikAppUi* CHelloBlankDocument::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it;
// the framework takes ownership of this object
return (static_cast <CEikAppUi*> (new (ELeave) CHelloBlankAppUi));
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -