mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-04 20:52:10 +01:00
33 lines
536 B
C++
33 lines
536 B
C++
|
#include "donothingplugin.h"
|
||
|
#include <QtPlugin>
|
||
|
#include <QStringList>
|
||
|
|
||
|
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)
|