| 14561 | } |
| 14562 | |
| 14563 | CRScheck::CRScheck(const LASheader* lasheader, GeoProjectionConverter* geoprojectionconverter, ValidationResult& results, BOOL no_CRS_fail) |
| 14564 | : results(results) { |
| 14565 | coordinate_units[0] = coordinate_units[1] = 0; |
| 14566 | elevation_units[0] = elevation_units[1] = 0; |
| 14567 | vertical_epsg[0] = vertical_epsg[1] = 0; |
| 14568 | ellipsoids[0] = ellipsoids[1] = 0; |
| 14569 | projections[0] = projections[1] = 0; |
| 14570 | this->lasheader = lasheader; |
| 14571 | this->geoprojectionconverter = geoprojectionconverter; |
| 14572 | this->no_CRS_fail = no_CRS_fail; |
| 14573 | }; |
| 14574 | |
| 14575 | CRScheck::~CRScheck() |
| 14576 | { |
nothing calls this directly
no outgoing calls
no test coverage detected