Determine if the header is for a particular LAS file version. \param major - Major version. \param minor - Minor version. \return Whether the version meets the criteria.
| 107 | /// \param minor - Minor version. |
| 108 | /// \return Whether the version meets the criteria. |
| 109 | bool versionEquals(uint8_t major, uint8_t minor) const |
| 110 | { return (major == 1 && minor == m_versionMinor); } |
| 111 | |
| 112 | /// Get system identifier. |
| 113 | /// Default value is \b "libLAS" specified as the SystemIdentifier constant. |