------------------------------------------------------------------------------
| 115 | |
| 116 | //------------------------------------------------------------------------------ |
| 117 | vtkDataObject* vtkUniformGridAMRAlgorithm::GetInput(int port) |
| 118 | { |
| 119 | if (this->GetNumberOfInputConnections(port) < 1) |
| 120 | { |
| 121 | return nullptr; |
| 122 | } |
| 123 | return this->GetExecutive()->GetInputData(port, 0); |
| 124 | } |
| 125 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected