Skip to content
Snippets Groups Projects
Commit 72d82220 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Fix API for some const-ness

parent 3109e348
No related branches found
No related tags found
1 merge request!447new tag
Pipeline #9660 passed
...@@ -125,8 +125,8 @@ class TrackMatrix ...@@ -125,8 +125,8 @@ 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() 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