| 83 | { |
| 84 | |
| 85 | PDAL_EXPORT void writePipeline(Stage *stage, const std::string& filename) |
| 86 | { |
| 87 | std::ostream *out = Utils::createFile(filename, false); |
| 88 | writePipeline(stage, *out); |
| 89 | Utils::closeFile(out); |
| 90 | } |
| 91 | |
| 92 | PDAL_EXPORT void writePipeline(Stage *stage, std::ostream& strm) |
| 93 | { |