| 150 | } |
| 151 | |
| 152 | std::string LasHeader::versionString() const |
| 153 | { |
| 154 | return std::to_string(versionMajor()) + "." + std::to_string(versionMinor()); |
| 155 | } |
| 156 | |
| 157 | bool LasHeader::versionAtLeast(uint8_t major, uint8_t minor) const |
| 158 | { |
nothing calls this directly
no test coverage detected