QGCSensorSettingsWidget.h 495 Bytes
Newer Older
lm's avatar
lm committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#ifndef QGCSENSORSETTINGSWIDGET_H
#define QGCSENSORSETTINGSWIDGET_H

#include <QWidget>

#include "UASInterface.h"

namespace Ui {
    class QGCSensorSettingsWidget;
}

class QGCSensorSettingsWidget : public QWidget {
    Q_OBJECT
public:
    QGCSensorSettingsWidget(UASInterface* uas, QWidget *parent = 0);
    ~QGCSensorSettingsWidget();

protected:
    UASInterface* mav;
    void changeEvent(QEvent *e);

private:
    Ui::QGCSensorSettingsWidget *ui;
};

#endif // QGCSENSORSETTINGSWIDGET_H