📄 svexunknownappserver.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 + -