180 * @brief Declare meta-informations for a plugin
181 * This is an helper macro that defines every function related to a plugin meta-informations (Plugin name, author, etc).
182 * 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.
183 * @note PLUGINIFORMATIONS should be declared into the Plugin's class body into the public scope
184 *
185 * @param NAME The plugin name as it will be registered into the plugins system (tlp::Plugin::name())
186 * @param AUTHOR The author of the plugin (tlp::Plugin::author())
187 * @param DATE The creation date (tlp::Plugin::date())
188 * @param INFO The plugin's description (tlp::Plugin::info())
189 * @param RELEASE The plugin's version number (tlp::Plugin::version())
190 * @param GROUP The plugin's group (tlp::Plugin::group()). If the plugin does not belong to any group, set GROUP to "".