1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-13 20:48:42 +01:00
LibrePilot/ground/src/plugins/uavobjects/uavobjectsplugin.h

20 lines
441 B
C
Raw Normal View History

#ifndef UAVOBJECTSPLUGIN_H
#define UAVOBJECTSPLUGIN_H
#include <extensionsystem/iplugin.h>
#include <QtPlugin>
#include "uavobjectmanager.h"
class UAVObjectsPlugin: public ExtensionSystem::IPlugin
{
public:
UAVObjectsPlugin();
~UAVObjectsPlugin();
void extensionsInitialized();
bool initialize(const QStringList & arguments, QString * errorString);
void shutdown();
};
#endif // UAVOBJECTSPLUGIN_H