diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-21 19:11:19 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-21 19:17:21 +0100 |
commit | ff38e35d832b7c7a3e189bee4a80271fd3a3c978 (patch) | |
tree | bb7c1cfee8a00acab1b455a2d5f211192ebc9ed9 /tracker-pt/ftnoir_tracker_pt.h | |
parent | 9e077d8d72f377be85406d90354afcb83ad3faa9 (diff) |
tracker/pt: don't `namespace pt_module' for core PT stuff
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.h')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h index 77835602..a53218df 100644 --- a/tracker-pt/ftnoir_tracker_pt.h +++ b/tracker-pt/ftnoir_tracker_pt.h @@ -12,6 +12,7 @@ #include "pt-api.hpp" #include "point_tracker.h" #include "cv/numeric.hpp" +#include "video/video-widget.hpp" #include <atomic> #include <memory> @@ -23,10 +24,9 @@ #include <QMutex> #include <QLayout> -class TrackerDialog_PT; -class video_widget; +namespace pt_impl { -namespace pt_module { +class TrackerDialog_PT; using namespace numeric_types; @@ -34,7 +34,7 @@ class Tracker_PT : public QThread, public ITracker { Q_OBJECT - friend class ::TrackerDialog_PT; + friend class TrackerDialog_PT; public: template<typename t> using pointer = pt_pointer<t>; @@ -80,4 +80,4 @@ private: } // ns pt_impl -using Tracker_PT = pt_module::Tracker_PT; +using Tracker_PT = pt_impl::Tracker_PT; |