diff vamp-client/CapnpRRClient.h @ 131:183fe1f03980

Update client to support list from
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 02 Nov 2016 18:39:51 +0000
parents 2004ec2b653e
children d04958b5d3ad
line wrap: on
line diff
--- a/vamp-client/CapnpRRClient.h	Wed Nov 02 18:26:47 2016 +0000
+++ b/vamp-client/CapnpRRClient.h	Wed Nov 02 18:39:51 2016 +0000
@@ -99,7 +99,7 @@
     // Loader methods:
 
     ListResponse
-    listPluginData() override {
+    listPluginData(std::vector<std::string> from) override {
 
         if (!m_transport->isOK()) {
             throw std::runtime_error("Piper server crashed or failed to start");
@@ -107,7 +107,9 @@
 
         capnp::MallocMessageBuilder message;
         piper::RpcRequest::Builder builder = message.initRoot<piper::RpcRequest>();
-        VampnProto::buildRpcRequest_List(builder);
+        ListRequest req;
+        req.from = from;
+        VampnProto::buildRpcRequest_List(builder, req);
         ReqId id = getId();
         builder.getId().setNumber(id);