Mercurial > hg > piper-cpp
diff vamp-client/client.cpp @ 96:215c9fb6b7a4
Rename to CapnpRRClient (request-response, as opposed to individual RPC calls)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 13 Oct 2016 17:00:06 +0100 |
parents | b6ac26b72b59 |
children | 427c4c725085 |
line wrap: on
line diff
--- a/vamp-client/client.cpp Thu Oct 13 14:31:10 2016 +0100 +++ b/vamp-client/client.cpp Thu Oct 13 17:00:06 2016 +0100 @@ -1,6 +1,6 @@ #include "ProcessQtTransport.h" -#include "CapnpClient.h" +#include "CapnpRRClient.h" #include <stdexcept> @@ -10,7 +10,7 @@ int main(int, char **) { piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server"); - piper::vampclient::CapnpClient client(&transport); + piper::vampclient::CapnpRRClient client(&transport); Vamp::HostExt::ListResponse lr = client.listPluginData(); cerr << "Plugins available:" << endl; @@ -58,6 +58,5 @@ (void)plugin->getRemainingFeatures(); delete plugin; - //!!! -- and also implement reset(), which will need to reconstruct internally }