|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Test Helper. More...
#include "ivsttestplugprovider.h"
Public Member Functions | |
| virtual IComponent *PLUGIN_API | getComponent ()=0 |
| get the component of the plug-in. | |
| virtual IEditController *PLUGIN_API | getController ()=0 |
| get the controller of the plug-in. | |
| virtual tresult PLUGIN_API | releasePlugIn (IComponent *component, IEditController *controller)=0 |
| release the component and/or controller | |
| virtual tresult PLUGIN_API | getSubCategories (IStringResult &result) const =0 |
| get the sub categories of the plug-in | |
| virtual tresult PLUGIN_API | getComponentUID (FUID &uid) const =0 |
| get the component UID of the plug-in | |
Public Member Functions inherited from Steinberg::FUnknown | |
| virtual tresult PLUGIN_API | queryInterface (const TUID _iid, void **obj)=0 |
| Query for a pointer to the specified interface. | |
| virtual uint32 PLUGIN_API | addRef ()=0 |
| Adds a reference and returns the new reference count. | |
| virtual uint32 PLUGIN_API | release ()=0 |
| Releases a reference and returns the new reference count. | |
Static Public Attributes | |
| static const FUID | iid |
Static Public Attributes inherited from Steinberg::FUnknown | |
| static const FUID | iid |
Test Helper.
This class provides access to the component and the controller of a plug-in when running a unit test (see ITest). You get this interface as the context argument in the ITestFactory::createTests method.
Definition at line 57 of file ivsttestplugprovider.h.
|
pure virtual |
get the component of the plug-in.
The reference count of the component is increased in this function and you need to call releasePlugIn when done with the component.
|
pure virtual |
get the controller of the plug-in.
The reference count of the controller is increased in this function and you need to call releasePlugIn when done with the controller.
|
static |
Definition at line 82 of file ivsttestplugprovider.h.