| 302 | |
| 303 | |
| 304 | MetadataNode PipelineManager::getMetadata() const |
| 305 | { |
| 306 | MetadataNode output("stages"); |
| 307 | |
| 308 | for (auto s : m_stages) |
| 309 | { |
| 310 | output.add(s->getMetadata()); |
| 311 | } |
| 312 | return output; |
| 313 | } |
| 314 | |
| 315 | |
| 316 | Stage& PipelineManager::makeReader(const std::string& inputFile, |