| 48 | |
| 49 | |
| 50 | std::string PipelineExecutor::getPipeline() const |
| 51 | { |
| 52 | if (!m_executed) |
| 53 | throw pdal_error("Pipeline has not been executed!"); |
| 54 | |
| 55 | std::stringstream strm; |
| 56 | pdal::PipelineWriter::writePipeline(m_manager.getStage(), strm); |
| 57 | return strm.str(); |
| 58 | } |
| 59 | |
| 60 | |
| 61 | std::string PipelineExecutor::getMetadata() const |
nothing calls this directly
no test coverage detected