7 changed files with 94 additions and 52 deletions
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
#include "MAVLinkSwarmSimulationLink.h" |
||||
|
||||
MAVLinkSwarmSimulationLink::MAVLinkSwarmSimulationLink(QObject *parent) : |
||||
MAVLinkSimulationLink() |
||||
{ |
||||
} |
||||
|
||||
|
||||
void MAVLinkSwarmSimulationLink::mainloop() |
||||
{ |
||||
|
||||
} |
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
#ifndef MAVLINKSWARMSIMULATIONLINK_H |
||||
#define MAVLINKSWARMSIMULATIONLINK_H |
||||
|
||||
#include "MAVLinkSimulationLink.h" |
||||
|
||||
class MAVLinkSwarmSimulationLink : public MAVLinkSimulationLink |
||||
{ |
||||
Q_OBJECT |
||||
public: |
||||
explicit MAVLinkSwarmSimulationLink(QObject *parent = 0); |
||||
|
||||
signals: |
||||
|
||||
public slots: |
||||
void mainloop(); |
||||
|
||||
}; |
||||
|
||||
#endif // MAVLINKSWARMSIMULATIONLINK_H
|
Loading…
Reference in new issue