serviceexplorerappdocument.cpp
来自「演示如何使用的symbian v9服务器应用框架」· C++ 代码 · 共 45 行
CPP
45 行
// Copyright (c) 2006 Murray Read, All rights reserved
#include "ServiceExplorerAppAppUi.h"
#include "ServiceExplorerAppDocument.h"
// Standard Symbian OS construction sequence
CServiceExplorerAppDocument* CServiceExplorerAppDocument::NewL(CEikApplication& aApp)
{
CServiceExplorerAppDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
CServiceExplorerAppDocument* CServiceExplorerAppDocument::NewLC(CEikApplication& aApp)
{
CServiceExplorerAppDocument* self = new (ELeave) CServiceExplorerAppDocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
void CServiceExplorerAppDocument::ConstructL()
{
// no implementation required
}
CServiceExplorerAppDocument::CServiceExplorerAppDocument(CEikApplication& aApp) : CAknDocument(aApp)
{
// no implementation required
}
CServiceExplorerAppDocument::~CServiceExplorerAppDocument()
{
// no implementation required
}
CEikAppUi* CServiceExplorerAppDocument::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it,
// the framework takes ownership of this object
CEikAppUi* appUi = new (ELeave) CServiceExplorerAppAppUi;
return appUi;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?