c@94: c@94: #ifndef PIPER_LOADER_H c@94: #define PIPER_LOADER_H c@94: c@94: #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@94: Vamp::Plugin * c@94: load(std::string key, float inputSampleRate, int adapterFlags) = 0; c@94: }; c@94: c@94: } c@94: } c@94: c@94: #endif