| 69 | } |
| 70 | |
| 71 | vtkTypeBool vtkWriter::ProcessRequest( |
| 72 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 73 | { |
| 74 | // generate the data |
| 75 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 76 | { |
| 77 | return this->RequestData(request, inputVector, outputVector); |
| 78 | } |
| 79 | |
| 80 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 81 | } |
| 82 | |
| 83 | int vtkWriter::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) |
| 84 | { |
nothing calls this directly
no test coverage detected