| 36 | } |
| 37 | |
| 38 | void JsonRpcServer::registerServices(const QObjectList& services) |
| 39 | { |
| 40 | m_services.clear(); |
| 41 | for (auto s : services) { |
| 42 | m_services[s] = ""; |
| 43 | } |
| 44 | m_ns_separator = ""; |
| 45 | } |
| 46 | |
| 47 | void JsonRpcServer::registerServices(const ServiceMap& services, |
| 48 | const QString& ns_separator) |
no test coverage detected