| 62 | //------------------------------------------------------------------------------ |
| 63 | |
| 64 | vtkSparseArrayToTable::vtkSparseArrayToTable() |
| 65 | : ValueColumn(nullptr) |
| 66 | { |
| 67 | this->SetValueColumn("value"); |
| 68 | |
| 69 | this->SetNumberOfInputPorts(1); |
| 70 | this->SetNumberOfOutputPorts(1); |
| 71 | } |
| 72 | |
| 73 | //------------------------------------------------------------------------------ |
| 74 |
nothing calls this directly
no test coverage detected