#include "donothingplugin.h" #include #include DoNothingPlugin::DoNothingPlugin() { // Do nothing } DoNothingPlugin::~DoNothingPlugin() { // Do nothing } bool DoNothingPlugin::initialize(const QStringList& args, QString *errMsg) { Q_UNUSED(args); Q_UNUSED(errMsg); return true; } void DoNothingPlugin::extensionsInitialized() { // Do nothing } void DoNothingPlugin::shutdown() { // Do nothing } Q_EXPORT_PLUGIN(DoNothingPlugin)