annotate vamp-client/PiperClient.h @ 90:6429a99abcad

Split out classes
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 10:17:59 +0100
parents
children c897c9a8daf1
rev   line source
c@90 1
c@90 2 #ifndef PIPER_CLIENT_H
c@90 3 #define PIPER_CLIENT_H
c@90 4
c@90 5 #include <vamp-hostsdk/PluginConfiguration.h>
c@90 6
c@90 7 namespace piper { //!!! change
c@90 8
c@90 9 class PiperStubPlugin;
c@90 10
c@90 11 class PiperStubPluginClientInterface
c@90 12 {
c@90 13 friend class PiperStubPlugin;
c@90 14
c@90 15 protected:
c@90 16 virtual
c@90 17 Vamp::Plugin::OutputList
c@90 18 configure(PiperStubPlugin *plugin,
c@90 19 Vamp::HostExt::PluginConfiguration config) = 0;
c@90 20
c@90 21 virtual
c@90 22 Vamp::Plugin::FeatureSet
c@90 23 process(PiperStubPlugin *plugin,
c@90 24 std::vector<std::vector<float> > inputBuffers,
c@90 25 Vamp::RealTime timestamp) = 0;
c@90 26
c@90 27 virtual Vamp::Plugin::FeatureSet
c@90 28 finish(PiperStubPlugin *plugin) = 0;
c@90 29 };
c@90 30
c@90 31 }
c@90 32
c@90 33 #endif