QGCConfigView.h 447 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef QGCCONFIGVIEW_H
#define QGCCONFIGVIEW_H

#include <QWidget>
#include <UASInterface.h>

namespace Ui {
class QGCConfigView;
}

class QGCConfigView : public QWidget
{
    Q_OBJECT
    
public:
    explicit QGCConfigView(QWidget *parent = 0);
    ~QGCConfigView();

public slots:
    void activeUASChanged(UASInterface* uas);
    
private:
    Ui::QGCConfigView *ui;
24
    QWidget *config;
25
    UASInterface* mav;
26 27 28 29

};

#endif // QGCCONFIGVIEW_H