| 41 | }; |
| 42 | |
| 43 | vtkEnsembleSource::vtkEnsembleSource() |
| 44 | { |
| 45 | this->SetNumberOfInputPorts(0); |
| 46 | this->SetNumberOfOutputPorts(1); |
| 47 | |
| 48 | this->Internal = new vtkEnsembleSourceInternal; |
| 49 | |
| 50 | this->CurrentMember = 0; |
| 51 | |
| 52 | this->MetaData = nullptr; |
| 53 | } |
| 54 | |
| 55 | vtkEnsembleSource::~vtkEnsembleSource() |
| 56 | { |
nothing calls this directly
no test coverage detected