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