| 33 | struct frame |
| 34 | { |
| 35 | frame(const std::string &img_path, const double timestamp) |
| 36 | : img_path_(img_path), timestamp_(timestamp){}; |
| 37 | |
| 38 | const std::string img_path_; |
| 39 | const double timestamp_; |
nothing calls this directly
no outgoing calls
no test coverage detected