------------------------------------------------------------------------------
| 321 | |
| 322 | //------------------------------------------------------------------------------ |
| 323 | int vtkXMLGenericDataObjectReader::RequestData( |
| 324 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 325 | { |
| 326 | // reader is created in RequestDataObject. |
| 327 | if (this->Reader != nullptr) |
| 328 | { |
| 329 | // RequestData() would be more appropriate but it is protected. |
| 330 | return this->Reader->ProcessRequest(request, inputVector, outputVector); |
| 331 | } |
| 332 | else |
| 333 | { |
| 334 | return 0; |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | //------------------------------------------------------------------------------ |
| 339 | void vtkXMLGenericDataObjectReader::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected