------------------------------------------------------------------------------
| 15 | |
| 16 | //------------------------------------------------------------------------------ |
| 17 | VTK_ABI_NAMESPACE_BEGIN |
| 18 | vtkHyperTreeGridAlgorithm::vtkHyperTreeGridAlgorithm() |
| 19 | { |
| 20 | // By default, only one input and one output ports |
| 21 | this->SetNumberOfInputPorts(1); |
| 22 | this->SetNumberOfOutputPorts(1); |
| 23 | |
| 24 | // Keep references to input and output data |
| 25 | this->InData = nullptr; // todo: should be a safer pointer type |
| 26 | this->OutData = nullptr; |
| 27 | |
| 28 | this->AppropriateOutput = false; |
| 29 | } |
| 30 | |
| 31 | //------------------------------------------------------------------------------ |
| 32 | vtkHyperTreeGridAlgorithm::~vtkHyperTreeGridAlgorithm() |
nothing calls this directly
no test coverage detected