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