Mercurial > hg > piper-cpp
comparison 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 |
comparison
equal
deleted
inserted
replaced
94:a660dca988f8 | 95:b6ac26b72b59 |
---|---|
1 | 1 |
2 #ifndef PIPER_LOADER_H | 2 #ifndef PIPER_LOADER_H |
3 #define PIPER_LOADER_H | 3 #define PIPER_LOADER_H |
4 | 4 |
5 #include <vamp-hostsdk/Plugin.h> | 5 #include <vamp-hostsdk/RequestResponse.h> |
6 | 6 |
7 namespace piper { | 7 namespace piper { |
8 namespace vampclient { | 8 namespace vampclient { |
9 | 9 |
10 class Loader | 10 class Loader |
11 { | 11 { |
12 public: | 12 public: |
13 virtual | 13 virtual |
14 Vamp::Plugin * | 14 Vamp::HostExt::ListResponse |
15 load(std::string key, float inputSampleRate, int adapterFlags) = 0; | 15 listPluginData() = 0; |
16 | |
17 virtual | |
18 Vamp::HostExt::LoadResponse | |
19 loadPlugin(const Vamp::HostExt::LoadRequest &) = 0; | |
16 }; | 20 }; |
17 | 21 |
18 } | 22 } |
19 } | 23 } |
20 | 24 |