MCPcopy Create free account
hub / github.com/Apache553/SubtitleFontHelper / QueryService

Class QueryService

SubtitleFontAutoLoaderDaemon/QueryService.h:10–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8 class IRpcRequestHandler;
9
10 class QueryService
11 {
12 private:
13 class Implementation;
14 std::unique_ptr<Implementation> m_impl;
15 public:
16 QueryService(IDaemon* daemon);
17 ~QueryService();
18
19 QueryService(const QueryService&) = delete;
20 QueryService(QueryService&&) = delete;
21
22 QueryService& operator=(const QueryService&) = delete;
23 QueryService& operator=(QueryService&&) = delete;
24
25 void Load(std::vector<std::unique_ptr<FontDatabase>>&& dbs);
26
27 IRpcRequestHandler* GetRpcRequestHandler();
28 };
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected