⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serviceexplorerappdocument.cpp

📁 symbian下读取服务的程序
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -