Mercurial > hg > piper-cpp
annotate 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 |
rev | line source |
---|---|
c@94 | 1 |
c@94 | 2 #ifndef PIPER_LOADER_H |
c@94 | 3 #define PIPER_LOADER_H |
c@94 | 4 |
c@97 | 5 #include "vamp-support/RequestResponse.h" |
c@94 | 6 |
c@97 | 7 namespace piper_vamp { |
c@97 | 8 namespace client { |
c@94 | 9 |
c@94 | 10 class Loader |
c@94 | 11 { |
c@94 | 12 public: |
c@97 | 13 virtual ListResponse listPluginData() = 0; |
c@97 | 14 virtual LoadResponse loadPlugin(const LoadRequest &) = 0; |
c@94 | 15 }; |
c@94 | 16 |
c@94 | 17 } |
c@94 | 18 } |
c@94 | 19 |
c@94 | 20 #endif |