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