| 335 | |
| 336 | |
| 337 | void LasWriter::readyFile(const std::string& filename, const SpatialReference& srs) |
| 338 | { |
| 339 | std::ostream *out = Utils::createFile(filename, true); |
| 340 | if (!out) |
| 341 | throwError("Couldn't open file '" + filename + "' for output."); |
| 342 | d->curFilename = filename; |
| 343 | Utils::writeProgress(m_progressFd, "READYFILE", filename); |
| 344 | prepOutput(out, srs); |
| 345 | } |
| 346 | |
| 347 | |
| 348 | void LasWriter::prepOutput(std::ostream *outStream, const SpatialReference& srs) |
nothing calls this directly
no test coverage detected