| 10 | namespace grid_map { |
| 11 | |
| 12 | BufferRegion::BufferRegion() : |
| 13 | staretIndex_(Index::Zero()), |
| 14 | size_(Size::Zero()), |
| 15 | quadrant_(BufferRegion::Quadrant::Undefined) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | BufferRegion::BufferRegion(const Index& index, const Size& size, const BufferRegion::Quadrant& quadrant) : |
| 20 | staretIndex_(index), |
nothing calls this directly
no outgoing calls
no test coverage detected