------------------------------------------------------------------------------
| 27 | |
| 28 | //------------------------------------------------------------------------------ |
| 29 | vtkMultiNewickTreeReader::vtkMultiNewickTreeReader() |
| 30 | { |
| 31 | vtkMultiPieceDataSet* output = vtkMultiPieceDataSet::New(); |
| 32 | this->SetOutput(output); |
| 33 | // Releasing data for pipeline parallelism. |
| 34 | // Filters will know it is empty. |
| 35 | output->ReleaseData(); |
| 36 | output->Delete(); |
| 37 | } |
| 38 | |
| 39 | //------------------------------------------------------------------------------ |
| 40 | vtkMultiNewickTreeReader::~vtkMultiNewickTreeReader() = default; |
nothing calls this directly
no test coverage detected