PluginInterface class reference
[Base module]
Declaration
#include <QtLua/Plugin>
namespace QtLua {
class PluginInterface;
};
This class is a member of the QtLua namespace.
This abstract class is declared in QtLua/qtluaplugin.hh source file, line 151.
This abstract class contains pure virtuals.
Description
This class describes the interface which must be implemented to write plugins compatible with the Plugin class.
See also Plugin class.
Members
Functions
- virtual ~PluginInterface()
- virtual void register_members(Plugin &plugin) = 0;
Members detail
This virtual destructor is declared in QtLua/qtluaplugin.hh source file, line 153.
virtual void register_members(Plugin &plugin) = 0;
This pure virtual function is declared in QtLua/qtluaplugin.hh source file, line 158.
Register all plugin members, called on Plugin initialization. This function must contains invocations of the QTLUA_PLUGIN_FUNCTION_REGISTER macro.