Mercurial > hg > piper-cpp
diff bits/RequestOrResponse.h @ 58:c38e12d4bbdd
Merge from branch outputid-string-in-featureset
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 19 Sep 2016 14:48:43 +0100 |
parents | 815e94fedc1c |
children | 7bfc07576830 |
line wrap: on
line diff
--- a/bits/RequestOrResponse.h Wed Sep 14 14:43:37 2016 +0100 +++ b/bits/RequestOrResponse.h Mon Sep 19 14:48:43 2016 +0100 @@ -55,22 +55,21 @@ RequestOrResponse() : // nothing by default direction(Request), type(RRType::NotValid), - success(false), - finishPlugin(0) { } + success(false) { } Direction direction; RRType type; bool success; std::string errorText; - std::vector<Vamp::HostExt::PluginStaticData> listResponse; + Vamp::HostExt::ListResponse listResponse; Vamp::HostExt::LoadRequest loadRequest; Vamp::HostExt::LoadResponse loadResponse; Vamp::HostExt::ConfigurationRequest configurationRequest; Vamp::HostExt::ConfigurationResponse configurationResponse; Vamp::HostExt::ProcessRequest processRequest; Vamp::HostExt::ProcessResponse processResponse; - Vamp::Plugin *finishPlugin; + Vamp::HostExt::FinishRequest finishRequest; Vamp::HostExt::ProcessResponse finishResponse; };