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

📄 svexserviceappserver.h

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

#ifndef SVEXSERVICEAPPSERVER_H
#define SVEXSERVICEAPPSERVER_H

#include <SvexService.h>

class CSvexServiceAppAppUi;

// ServiceApp's implementation of the Service Info Service session.
class CSvexServiceAppSession : public CSvexServiceInfoSession
    {
public: // from CSvexServiceInfoSession
	void ShowAllL(TUid aServiceUid);
	void ShowAppL(TUid aServiceUid, TUid aAppUid);
private:
	CSvexServiceAppAppUi* AppUi();
    };


// ServiceApp's implementation of the server, using CSvexServiceInfoServer
// for convenience because no other services are implemented.
class CSvexServiceAppServer : public CSvexServiceInfoServer
    {
public: // from CSvexServiceInfoServer
	CSvexServiceAppServer();
	CSvexServiceInfoSession* CreateServiceInfoServiceL() const;
	inline CSvexServiceAppAppUi* AppUi() { return iAppUi; }
private:
	mutable CSvexServiceAppAppUi* iAppUi;
    };


#endif

⌨️ 快捷键说明

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