| 15 | #include "syncxmlrpc.h" |
| 16 | |
| 17 | SyncXmlRpc::SyncXmlRpc(const QUrl &endPoint) : rpc(endPoint) {} |
| 18 | |
| 19 | bool SyncXmlRpc::request(const QString &method, const QVariantList &args) { |
| 20 | rpc.call(method, args, this, SLOT(whenResponse(QVariant &)), this, |
nothing calls this directly
no outgoing calls
no test coverage detected