192 * @brief Declare meta-information for a plugin
193 * This is an helper macro that defines every function related to a plugin meta-information (Plugin name, author, etc).
194 * When creating a new plugin, this macro avoids having to define pure-virtual methods located into the Plugin interface and put them on the same line.
195 * @note PLUGINIFORMATION should be declared into the Plugin's class body into the public scope
196 *
197 * @param NAME The plugin name as it will be registered into the plugins system (tlp::Plugin::name())
198 * @param AUTHOR The author of the plugin (tlp::Plugin::author())
199 * @param DATE The creation date (tlp::Plugin::date())
200 * @param INFO The plugin's description (tlp::Plugin::info())
201 * @param RELEASE The plugin's version number (tlp::Plugin::version())
202 * @param GROUP The plugin's group (tlp::Plugin::group()). If the plugin does not belong to any group, set GROUP to "".