mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +01:00
20 lines
441 B
C
20 lines
441 B
C
|
#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
|