Mercurial > hg > piper-cpp
diff vamp-client/Loader.h @ 95:b6ac26b72b59
Implement list, use request-response classes in loader
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 13 Oct 2016 14:31:10 +0100 |
parents | a660dca988f8 |
children | 427c4c725085 |
line wrap: on
line diff
--- a/vamp-client/Loader.h Thu Oct 13 14:10:55 2016 +0100 +++ b/vamp-client/Loader.h Thu Oct 13 14:31:10 2016 +0100 @@ -2,7 +2,7 @@ #ifndef PIPER_LOADER_H #define PIPER_LOADER_H -#include <vamp-hostsdk/Plugin.h> +#include <vamp-hostsdk/RequestResponse.h> namespace piper { namespace vampclient { @@ -11,8 +11,12 @@ { public: virtual - Vamp::Plugin * - load(std::string key, float inputSampleRate, int adapterFlags) = 0; + Vamp::HostExt::ListResponse + listPluginData() = 0; + + virtual + Vamp::HostExt::LoadResponse + loadPlugin(const Vamp::HostExt::LoadRequest &) = 0; }; }