------------------------------------------------------------------------------
| 305 | |
| 306 | //------------------------------------------------------------------------------ |
| 307 | int vtkXMLGenericDataObjectReader::RequestUpdateExtent( |
| 308 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 309 | { |
| 310 | // reader is created in RequestDataObject. |
| 311 | if (this->Reader != nullptr) |
| 312 | { |
| 313 | // RequestUpdateExtent() would be more appropriate but it is protected. |
| 314 | return this->Reader->ProcessRequest(request, inputVector, outputVector); |
| 315 | } |
| 316 | else |
| 317 | { |
| 318 | return 0; |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | //------------------------------------------------------------------------------ |
| 323 | int vtkXMLGenericDataObjectReader::RequestData( |
nothing calls this directly
no test coverage detected