svexopenappserver.h

来自「演示如何使用的symbian v9服务器应用框架」· C头文件 代码 · 共 35 行

H
35
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?