------------------------------------------------------------------------------
| 498 | |
| 499 | //------------------------------------------------------------------------------ |
| 500 | vtkDataObject* vtkXMLWriter::GetInput(int port) |
| 501 | { |
| 502 | if (this->GetNumberOfInputConnections(port) < 1) |
| 503 | { |
| 504 | return nullptr; |
| 505 | } |
| 506 | return this->GetExecutive()->GetInputData(port, 0); |
| 507 | } |
| 508 | |
| 509 | //------------------------------------------------------------------------------ |
| 510 | vtkTypeBool vtkXMLWriter::ProcessRequest( |
no test coverage detected