Mercurial > hg > piper-cpp
annotate vamp-client/Loader.h @ 94:a660dca988f8
More renaming
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 13 Oct 2016 14:10:55 +0100 |
parents | |
children | b6ac26b72b59 |
rev | line source |
---|---|
c@94 | 1 |
c@94 | 2 #ifndef PIPER_LOADER_H |
c@94 | 3 #define PIPER_LOADER_H |
c@94 | 4 |
c@94 | 5 #include <vamp-hostsdk/Plugin.h> |
c@94 | 6 |
c@94 | 7 namespace piper { |
c@94 | 8 namespace vampclient { |
c@94 | 9 |
c@94 | 10 class Loader |
c@94 | 11 { |
c@94 | 12 public: |
c@94 | 13 virtual |
c@94 | 14 Vamp::Plugin * |
c@94 | 15 load(std::string key, float inputSampleRate, int adapterFlags) = 0; |
c@94 | 16 }; |
c@94 | 17 |
c@94 | 18 } |
c@94 | 19 } |
c@94 | 20 |
c@94 | 21 #endif |