MCPcopy Create free account
hub / github.com/PDAL/PDAL / versionAtLeast

Method versionAtLeast

tools/lasdump/Header.hpp:102–103  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

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.

Callers 2

Header.cppFile · 0.45
dumpMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected