#include <LadspaWrapperBuffer.hxx>
Public Member Functions | |
LadspaWrapperBuffer (const Config &c=Config()) | |
LadspaWrapperBuffer (const std::string &libraryFileName, unsigned index, const std::string &factoryKey) | |
bool | ConcreteStart () |
Processing objects have to redefine this method when starting them implies some internal changes. | |
bool | ConcreteStop () |
Processing objects have to redefine this method when stoping them implies some internal changes. | |
bool | ConcreteConfigure (const ProcessingConfig &) |
Configuration method interface. | |
bool | Do () |
Supervised mode execution method (using ports). | |
virtual | ~LadspaWrapperBuffer () |
const char * | GetClassName () const |
Override it in every subclass and retur the name of that class. | |
bool | LoadLibraryFunction (const std::string &libraryFileName, unsigned index, const std::string &factoryKey) |
Definition at line 21 of file LadspaWrapperBuffer.hxx.
CLAM::LadspaWrapperBuffer::LadspaWrapperBuffer | ( | const std::string & | libraryFileName, | |
unsigned | index, | |||
const std::string & | factoryKey | |||
) |
virtual CLAM::LadspaWrapperBuffer::~LadspaWrapperBuffer | ( | ) | [virtual] |
bool CLAM::LadspaWrapperBuffer::ConcreteConfigure | ( | const ProcessingConfig & | ) | [virtual] |
Configuration method interface.
The Processing base class forces all the concrete classes derived from it to implement this method, which must actually perform the specific configuration tasks.
Note that the user can not call this method directly. He will use Configure instead. The argument is expected to be an object of the necesary concrete configuration class.
Reference | to the configuration object. |
true if the processing object is left in a consistent state, and can be executed.
This | method must throw a bad_cast exception if the argument is not an object of the expected configuration class. |
Reimplemented from CLAM::Processing.
bool CLAM::LadspaWrapperBuffer::ConcreteStart | ( | void | ) | [virtual] |
Processing objects have to redefine this method when starting them implies some internal changes.
ie: adquiring resources.
Reimplemented from CLAM::Processing.
bool CLAM::LadspaWrapperBuffer::ConcreteStop | ( | ) | [virtual] |
Processing objects have to redefine this method when stoping them implies some internal changes.
ie: releasing resources.
Reimplemented from CLAM::Processing.
bool CLAM::LadspaWrapperBuffer::Do | ( | ) | [virtual] |
Supervised mode execution method (using ports).
Implements CLAM::Processing.
const char* CLAM::LadspaWrapperBuffer::GetClassName | ( | ) | const [virtual] |
Override it in every subclass and retur the name of that class.
Implements CLAM::Processing.
bool CLAM::LadspaWrapperBuffer::LoadLibraryFunction | ( | const std::string & | libraryFileName, | |
unsigned | index, | |||
const std::string & | factoryKey | |||
) |