annotate vamp-client/Loader.h @ 106:a0edd7c97d2d

Add generated files -- they aren't supposed to change (much?) I think and it's better than expecting the compiler to be present on every platform
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 17 Oct 2016 18:56:18 +0100
parents 427c4c725085
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