------------------------------------------------------------------------------
| 508 | |
| 509 | //------------------------------------------------------------------------------ |
| 510 | vtkTypeBool vtkXMLWriter::ProcessRequest( |
| 511 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 512 | { |
| 513 | // generate the data |
| 514 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 515 | { |
| 516 | return this->RequestData(request, inputVector, outputVector); |
| 517 | } |
| 518 | |
| 519 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 520 | } |
| 521 | |
| 522 | //------------------------------------------------------------------------------ |
| 523 | int vtkXMLWriter::RequestInformation(vtkInformation* vtkNotUsed(request), |
no test coverage detected