35 #ifndef ROSBAG_STRUCTURES_H
36 #define ROSBAG_STRUCTURES_H
49 ConnectionInfo() : id(-1) { }
71 std::string compression;
72 uint32_t compressed_size;
73 uint32_t uncompressed_size;
82 bool operator<(
IndexEntry const& b)
const {
return time < b.
time; }
87 bool operator()(
ros::Time const& a, IndexEntry
const& b)
const {
return a < b.time; }
88 bool operator()(IndexEntry
const& a,
ros::Time const& b)
const {
return a.time < b; }