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

📄 svexunknownappserver.h

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

#ifndef SVEXUNKNOWNAPPSERVER_H
#define SVEXUNKNOWNAPPSERVER_H

#include <SvexService.h>

class CSvexUnknownAppAppUi;

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


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


#endif

⌨️ 快捷键说明

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