Skip to content

Instantly share code, notes, and snippets.

@richerlariviere
Last active May 25, 2016 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richerlariviere/5d4f43af6f31802cecdbc9af8d40603f to your computer and use it in GitHub Desktop.
Save richerlariviere/5d4f43af6f31802cecdbc9af8d40603f to your computer and use it in GitHub Desktop.
#include "DronoPilotHelper.h"
DronoPilotHelper::DronoPilotHelper(const QString& title, QAction* action, QWidget *parent)
: QGCDockWidget(title, action, parent)
{
}
DronoPilotHelper::~DronoPilotHelper()
{
}
#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