diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-03 22:23:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-04 12:19:26 +0100 |
commit | b256886a5cb9f2ae3ebda70a2045b19ed9f4233e (patch) | |
tree | 4fa1e46de224cf834a05824dc1eb86001bdb3300 /tracker-rift-042/ftnoir_tracker_rift_042.h | |
parent | e89709a801e7874bc02c66848c638c6a0ccc85c1 (diff) |
api: add status check for modules
Diffstat (limited to 'tracker-rift-042/ftnoir_tracker_rift_042.h')
-rw-r--r-- | tracker-rift-042/ftnoir_tracker_rift_042.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tracker-rift-042/ftnoir_tracker_rift_042.h b/tracker-rift-042/ftnoir_tracker_rift_042.h index 82081085..630878b9 100644 --- a/tracker-rift-042/ftnoir_tracker_rift_042.h +++ b/tracker-rift-042/ftnoir_tracker_rift_042.h @@ -21,12 +21,14 @@ struct settings : opts { {} }; -class rift_tracker_042 : public ITracker +class rift_tracker_042 : public QObject, public ITracker { + Q_OBJECT + public: rift_tracker_042(); virtual ~rift_tracker_042() override; - void start_tracker(QFrame *) override; + module_status start_tracker(QFrame *) override; void data(double *data) override; private: double old_yaw; |