diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-25 16:25:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-25 16:30:14 +0200 |
commit | a48349deb6a70631ae95e9e0505930949f1e8dac (patch) | |
tree | 5bdae16bb7f6446cd9591fb4022b6b07c6c690c8 /logic/tracker.h | |
parent | fe2a58edc267ff643e50b412f893e15cbafab6b5 (diff) |
logic: remove camel case
Diffstat (limited to 'logic/tracker.h')
-rw-r--r-- | logic/tracker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/tracker.h b/logic/tracker.h index ab0cc323..1151d16b 100644 --- a/logic/tracker.h +++ b/logic/tracker.h @@ -63,7 +63,7 @@ private: Pose output_pose, raw_6dof, last_mapped, last_raw; Pose newpose; - SelectedLibraries const& libs; + runtime_libraries const& libs; // The owner of the reference is the main window. // This design might be usefull if we decide later on to swap out // the logger while the tracker is running. @@ -98,7 +98,7 @@ private: static constexpr double c_mult = 16; static constexpr double c_div = 1./c_mult; public: - Tracker(Mappings& m, SelectedLibraries& libs, TrackLogger& logger); + Tracker(Mappings& m, runtime_libraries& libs, TrackLogger& logger); ~Tracker(); void raw_and_mapped_pose(double* mapped, double* raw) const; |