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

📄 svexopenappserver.h

📁 演示如何使用的symbian v9服务器应用框架
💻 H
字号:
// Copyright (c) 2006 Murray Read, All rights reserved

#ifndef SVEXOpenAppSERVER_H
#define SVEXOpenAppSERVER_H

#include <SvexService.h>

class CSvexOpenAppAppUi;

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


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


#endif

⌨️ 快捷键说明

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