VampPluginSDK 2.10
|
PluginAdapter and PluginAdapterBase provide a wrapper class that a plugin library can use to make its C++ Vamp::Plugin objects available through the Vamp C API. More...
#include <vamp-sdk/PluginAdapter.h>
Public Member Functions | |
virtual | ~PluginAdapterBase () |
const VampPluginDescriptor * | getDescriptor () |
Return a VampPluginDescriptor describing the plugin that is wrapped by this adapter. | |
Protected Member Functions | |
PluginAdapterBase () | |
virtual Plugin * | createPlugin (float inputSampleRate)=0 |
Protected Attributes | |
Impl * | m_impl |
PluginAdapter and PluginAdapterBase provide a wrapper class that a plugin library can use to make its C++ Vamp::Plugin objects available through the Vamp C API.
Almost all Vamp plugin libraries will want to make use of this. To do so, all they need to do is declare a PluginAdapter<T> for each plugin class T in their library. It's very simple, and you need to know absolutely nothing about how it works in order to use it. Just cut and paste from an existing plugin's discovery function.
Definition at line 65 of file PluginAdapter.h.
|
virtual |
|
protected |
const VampPluginDescriptor * Vamp::PluginAdapterBase::getDescriptor | ( | ) |
Return a VampPluginDescriptor describing the plugin that is wrapped by this adapter.
|
protectedpure virtual |
Implemented in Vamp::PluginAdapter< P >.
|
protected |
Definition at line 82 of file PluginAdapter.h.