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

📄 svexserviceappdocument.cpp

📁 symbian下读取服务的程序
💻 CPP
字号:
// Copyright (c) 2006 Murray Read, All rights reserved

#include "SvexServiceAppAppUi.h"
#include "SvexServiceAppDocument.h"

// Standard Symbian OS construction sequence
CSvexServiceAppDocument* CSvexServiceAppDocument::NewL(CEikApplication& aApp)
    {
    CSvexServiceAppDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
    }

CSvexServiceAppDocument* CSvexServiceAppDocument::NewLC(CEikApplication& aApp)
    {
    CSvexServiceAppDocument* self = new (ELeave) CSvexServiceAppDocument(aApp);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
    }

void CSvexServiceAppDocument::ConstructL()
    {
	// no implementation required
    }    

CSvexServiceAppDocument::CSvexServiceAppDocument(CEikApplication& aApp) : CAknDocument(aApp) 
    {
	// no implementation required
    }

CSvexServiceAppDocument::~CSvexServiceAppDocument()
    {
	// no implementation required
    }

CEikAppUi* CSvexServiceAppDocument::CreateAppUiL()
    {
    // Create the application user interface, and return a pointer to it,
    // the framework takes ownership of this object
    CEikAppUi* appUi = new (ELeave) CSvexServiceAppAppUi;
    return appUi;
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -