| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected