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/point_tracker.h | |
parent | 9e077d8d72f377be85406d90354afcb83ad3faa9 (diff) |
tracker/pt: don't `namespace pt_module' for core PT stuff
Diffstat (limited to 'tracker-pt/point_tracker.h')
-rw-r--r-- | tracker-pt/point_tracker.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index 6f3e0cee..70c7a9fc 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -21,7 +21,7 @@ #include <QObject> -namespace pt_module { +namespace pt_impl { // ---------------------------------------------------------------------------- // Describes a 3-point model @@ -82,7 +82,7 @@ private: bool init_phase = true; }; -} // ns pt_module +} // ns pt_impl -using PointTracker = pt_module::PointTracker; -using PointModel = pt_module::PointModel; +using PointTracker = pt_impl::PointTracker; +using PointModel = pt_impl::PointModel; |