BALL
1.4.2
|
#include <BALL/VIEW/PLUGIN/inputDevPluginHandler.h>
Public Member Functions | |
virtual bool | canHandle (BALLPlugin *plugin) const |
Public Member Functions inherited from BALL::PluginHandler | |
virtual | ~PluginHandler () |
bool | startPlugin (BALLPlugin *plugin) |
bool | stopPlugin (BALLPlugin *plugin) |
virtual bool | isRunning (BALLPlugin *plugin) const |
Protected Member Functions | |
virtual bool | specificSetup_ (BALLPlugin *plugin) |
virtual bool | specificShutdown_ (BALLPlugin *plugin) |
See PluginHandler for detailed documentation
Definition at line 18 of file inputDevPluginHandler.h.
|
virtual |
This function is used to check whether this PluginHandler can initialize the passed plugin. A usual implementation would be something like:
return qobject_cast<MyPlugin*>(plugin) != 0;
Implements BALL::PluginHandler.
|
protectedvirtual |
A purely virtual function which is responsible for properly initialising the passed plugin instance.
The passed plugin may be assumed to be of a type that can be handled by this PluginHandler.
Implements BALL::PluginHandler.
|
protectedvirtual |
A purely virtual function which is responsible for properly deinitialising the passed plugin instance.
The passed plugin may be assumed to be of a type that can be handled by this PluginHandler.
Implements BALL::PluginHandler.