c@94: c@94: #ifndef PIPER_LOADER_H c@94: #define PIPER_LOADER_H c@94: c@97: #include "vamp-support/RequestResponse.h" c@94: c@97: namespace piper_vamp { c@97: namespace client { c@94: c@94: class Loader c@94: { c@94: public: c@97: virtual ListResponse listPluginData() = 0; c@97: virtual LoadResponse loadPlugin(const LoadRequest &) = 0; c@94: }; c@94: c@94: } c@94: } c@94: c@94: #endif