Skip to content
Snippets Groups Projects
Commit 18809594 authored by Mederic Fourmy's avatar Mederic Fourmy
Browse files

Added const getters to track matrix

parent 3109e348
No related branches found
No related tags found
No related merge requests found
Pipeline #9604 passed
...@@ -125,8 +125,10 @@ class TrackMatrix ...@@ -125,8 +125,10 @@ class TrackMatrix
// bool markKeyframe(CaptureBasePtr _capture); // bool markKeyframe(CaptureBasePtr _capture);
// bool unmarkKeyframe(CaptureBasePtr _capture); // bool unmarkKeyframe(CaptureBasePtr _capture);
const map<SizeStd, Track>& getTracks(){return tracks_;} const map<SizeStd, Track>& getTracks() {return tracks_;}
const map<CaptureBasePtr, Snapshot >& getSnapshots(){return snapshots_;} const map<SizeStd, Track>& getTracks() const {return tracks_;}
const map<CaptureBasePtr, Snapshot >& getSnapshots() {return snapshots_;}
const map<CaptureBasePtr, Snapshot >& getSnapshots() const {return snapshots_;}
private: private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment