| 33 | const KeyframeRecord& get(size_t keyframe_id) const; |
| 34 | bool has(size_t keyframe_id) const { return id_to_index_.count(keyframe_id) != 0; } |
| 35 | size_t size() const { return keyframes_.size(); } |
| 36 | |
| 37 | // Records in insertion order (== keyframe creation order). |
| 38 | const std::vector<KeyframeRecord>& records() const { return keyframes_; } |
nothing calls this directly
no outgoing calls
no test coverage detected