checks if given file is a las/laz file
| 495 | |
| 496 | // checks if given file is a las/laz file |
| 497 | bool IsLasLazFile(std::string fn) { |
| 498 | return HasFileExt(fn, "las") || HasFileExt(fn, "laz"); |
| 499 | } |
| 500 | |
| 501 | /// returns TRUE if 'val' is found in 'vec' |
| 502 | bool StringInVector(const std::string& val, const std::vector<std::string>& vec, bool casesense) { |
nothing calls this directly
no test coverage detected