summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/ftnoir_tracker_pt.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-06-16 08:50:03 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-06-16 09:19:38 +0200
commit4c5c3904a55a748f3453f5b067e2d6d0f0a11848 (patch)
tree523bf9f2129d523366555437c220b5878082b28a /ftnoir_tracker_pt/ftnoir_tracker_pt.h
parent7e3f2ec7b38d547e39d667b9ab188f90775dd3bf (diff)
pt: rename for consistency with trackhat
We're going to merge to trackhat often so let's not introduce needless conflicts. PT headers need to be include-able.
Diffstat (limited to 'ftnoir_tracker_pt/ftnoir_tracker_pt.h')
-rw-r--r--ftnoir_tracker_pt/ftnoir_tracker_pt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ftnoir_tracker_pt/ftnoir_tracker_pt.h b/ftnoir_tracker_pt/ftnoir_tracker_pt.h
index 349cf2c8..771631cd 100644
--- a/ftnoir_tracker_pt/ftnoir_tracker_pt.h
+++ b/ftnoir_tracker_pt/ftnoir_tracker_pt.h
@@ -33,12 +33,12 @@
//-----------------------------------------------------------------------------
// Constantly processes the tracking chain in a separate thread
-class Tracker : public QThread, public ITracker
+class Tracker_PT : public QThread, public ITracker
{
Q_OBJECT
public:
- Tracker();
- ~Tracker() override;
+ Tracker_PT();
+ ~Tracker_PT() override;
void start_tracker(QFrame* parent_window) override;
void data(double* data) override;
@@ -69,7 +69,7 @@ private:
PTVideoWidget* video_widget;
QFrame* video_frame;
- settings s;
+ settings_pt s;
Timer time;
volatile bool ever_success;