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.cpp | |
parent | 9e077d8d72f377be85406d90354afcb83ad3faa9 (diff) |
tracker/pt: don't `namespace pt_module' for core PT stuff
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.cpp')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.cpp b/tracker-pt/ftnoir_tracker_pt.cpp index 75d7e5a6..4223da26 100644 --- a/tracker-pt/ftnoir_tracker_pt.cpp +++ b/tracker-pt/ftnoir_tracker_pt.cpp @@ -18,7 +18,9 @@ #include <QFile> #include <QCoreApplication> -namespace pt_module { +using namespace options; + +namespace pt_impl { Tracker_PT::Tracker_PT(pointer<pt_runtime_traits> const& traits) : traits { traits }, @@ -212,4 +214,4 @@ Affine Tracker_PT::pose() const return point_tracker.pose(); } -} // ns pt_module +} // ns pt_impl |