#include <fbfilter.h>
Filter manager.
This class provides list of all available filter types and a factory method in order to create an instance of the desired filter type.
This manager will list both built-in and plug-in filters.
See the class FBFilter for more details.
The following sample code shows how to use C++ or Python to create an instance of the orfilter_template filter and set one of its property. For the sample code to work, the plugin must have been compiled and copied in the plugins folder prior to the application startup.
Sample C++ code:
Sample Python code:
Definition at line 195 of file fbfilter.h.
Public Member Functions | |
FBFilterManager () | |
Constructor. More... | |
~FBFilterManager () | |
Destructor. More... | |
FBFilter * | CreateFilter (const char *pFilterTypeName) |
Create a filter instance according to the filter type requested. More... | |
Public Attributes | |
FBStringList | FilterTypeNames |
List of available filters. More... | |
FBFilterManager | ( | ) |
Constructor.
~FBFilterManager | ( | ) |
Destructor.
FBFilter* CreateFilter | ( | const char * | pFilterTypeName | ) |
Create a filter instance according to the filter type requested.
pFilterTypeName | String describing the type of the desired filter, as obtained from list FilterTypeNames. |
FBStringList FilterTypeNames |
List of available filters.
This list does provide the complete list of available filters, both system defined and user defined.
Definition at line 235 of file fbfilter.h.