Mercurial > hg > piper-cpp
comparison vamp-client/Loader.h @ 97:427c4c725085
Bring in the Request/Response classes that were in the Vamp SDK, adding them to vamp-support in here instead
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 13 Oct 2016 18:05:35 +0100 |
parents | b6ac26b72b59 |
children | ff3fd8d1b2dc |
comparison
equal
deleted
inserted
replaced
96:215c9fb6b7a4 | 97:427c4c725085 |
---|---|
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/RequestResponse.h> | 5 #include "vamp-support/RequestResponse.h" |
6 | 6 |
7 namespace piper { | 7 namespace piper_vamp { |
8 namespace vampclient { | 8 namespace client { |
9 | 9 |
10 class Loader | 10 class Loader |
11 { | 11 { |
12 public: | 12 public: |
13 virtual | 13 virtual ListResponse listPluginData() = 0; |
14 Vamp::HostExt::ListResponse | 14 virtual LoadResponse loadPlugin(const LoadRequest &) = 0; |
15 listPluginData() = 0; | |
16 | |
17 virtual | |
18 Vamp::HostExt::LoadResponse | |
19 loadPlugin(const Vamp::HostExt::LoadRequest &) = 0; | |
20 }; | 15 }; |
21 | 16 |
22 } | 17 } |
23 } | 18 } |
24 | 19 |