Determine if the header is for a LAS file version of at least a certain level. \param major - Major version. \param minor - Minor version. \return Whether the version meets the criteria.
| 100 | /// \param minor - Minor version. |
| 101 | /// \return Whether the version meets the criteria. |
| 102 | bool versionAtLeast(uint8_t major, uint8_t minor) const |
| 103 | { return (1 >= major && m_versionMinor >= minor); } |
| 104 | |
| 105 | /// Determine if the header is for a particular LAS file version. |
| 106 | /// \param major - Major version. |
no outgoing calls
no test coverage detected