| 46 | { |
| 47 | |
| 48 | PipelineManager::PipelineManager(point_count_t streamLimit) : |
| 49 | m_factory(new StageFactory), |
| 50 | m_tablePtr(new ColumnPointTable()), m_table(*m_tablePtr), |
| 51 | m_streamTablePtr(new FixedPointTable(streamLimit)), |
| 52 | m_streamTable(*m_streamTablePtr), |
| 53 | m_progressFd(-1), m_input(nullptr) |
| 54 | {} |
| 55 | |
| 56 | |
| 57 | PipelineManager::~PipelineManager() |
nothing calls this directly
no outgoing calls
no test coverage detected