checks if given file is a las/laz file
| 491 | |
| 492 | // checks if given file is a las/laz file |
| 493 | bool IsLasLazFile(std::string fn) { |
| 494 | return HasFileExt(fn, "las") || HasFileExt(fn, "laz"); |
| 495 | } |
| 496 | |
| 497 | /// returns TRUE if 'val' is found in 'vec' |
| 498 | bool StringInVector(const std::string& val, const std::vector<std::string>& vec, bool casesense) { |
no test coverage detected