Last active
May 25, 2016 02:16
-
-
Save richerlariviere/5d4f43af6f31802cecdbc9af8d40603f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "DronoPilotHelper.h" | |
DronoPilotHelper::DronoPilotHelper(const QString& title, QAction* action, QWidget *parent) | |
: QGCDockWidget(title, action, parent) | |
{ | |
} | |
DronoPilotHelper::~DronoPilotHelper() | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef DRONOPILOTHELPER_H | |
#define DRONOPILOTHELPER_H | |
#include "QGCDockWidget.h" | |
class DronoPilotHelper : public QGCDockWidget | |
{ | |
public: | |
explicit DronoPilotHelper(const QString& title, QAction* action, QWidget *parent = 0); | |
~DronoPilotHelper(); | |
private: | |
}; | |
#endif // DRONOPILOTHELPER_H |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment