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