QGCUASWorker.h 246 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
#ifndef QGCUASWORKER_H
#define QGCUASWORKER_H

#include <QThread>

class QGCUASWorker : public QThread
{
public:
    QGCUASWorker();

11 12 13
public slots:
    void quit();

14 15
protected:
    void run();
16 17

    bool _should_exit;
18 19 20
};

#endif // QGCUASWORKER_H