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