Commit 11e26802 authored by Don Gagne's avatar Don Gagne

Remove bogus contructor

parent 305a46ad
......@@ -36,11 +36,6 @@ GenericFirmwarePlugin::GenericFirmwarePlugin(QObject* parent) :
}
GenericFirmwarePlugin::GenericFirmwarePlugin()
{
}
QList<VehicleComponent*> GenericFirmwarePlugin::componentsForVehicle(AutoPilotPlugin* vehicle)
{
Q_UNUSED(vehicle);
......
......@@ -47,7 +47,6 @@ public:
private:
/// All access to singleton is through AutoPilotPluginManager::instance
GenericFirmwarePlugin(QObject* parent = NULL);
GenericFirmwarePlugin();
};
#endif
......@@ -91,11 +91,6 @@ PX4FirmwarePlugin::PX4FirmwarePlugin(QObject* parent) :
}
PX4FirmwarePlugin::PX4FirmwarePlugin()
{
}
QList<VehicleComponent*> PX4FirmwarePlugin::componentsForVehicle(AutoPilotPlugin* vehicle)
{
Q_UNUSED(vehicle);
......
......@@ -47,7 +47,6 @@ public:
private:
/// All access to singleton is through AutoPilotPluginManager::instance
PX4FirmwarePlugin(QObject* parent = NULL);
PX4FirmwarePlugin();
};
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment