c@94: c@94: #ifndef PIPER_LOADER_H c@94: #define PIPER_LOADER_H c@94: c@95: #include c@94: c@94: namespace piper { c@94: namespace vampclient { c@94: c@94: class Loader c@94: { c@94: public: c@94: virtual c@95: Vamp::HostExt::ListResponse c@95: listPluginData() = 0; c@95: c@95: virtual c@95: Vamp::HostExt::LoadResponse c@95: loadPlugin(const Vamp::HostExt::LoadRequest &) = 0; c@94: }; c@94: c@94: } c@94: } c@94: c@94: #endif