------------------------------------------------------------------------------
| 16 | |
| 17 | //------------------------------------------------------------------------------ |
| 18 | vtkTableAlgorithm::vtkTableAlgorithm() |
| 19 | { |
| 20 | // by default assume filters have one input and one output |
| 21 | // subclasses that deviate should modify this setting |
| 22 | this->SetNumberOfInputPorts(1); |
| 23 | this->SetNumberOfOutputPorts(1); |
| 24 | } |
| 25 | |
| 26 | //------------------------------------------------------------------------------ |
| 27 | vtkTableAlgorithm::~vtkTableAlgorithm() = default; |
nothing calls this directly
no test coverage detected