------------------------------------------------------------------------------
| 206 | |
| 207 | //------------------------------------------------------------------------------ |
| 208 | vtkTypeBool vtkIOSSWriter::ProcessRequest( |
| 209 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 210 | { |
| 211 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 212 | { |
| 213 | return this->RequestInformation(request, inputVector, outputVector); |
| 214 | } |
| 215 | else if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 216 | { |
| 217 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 218 | } |
| 219 | // generate the data |
| 220 | else if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 221 | { |
| 222 | return this->RequestData(request, inputVector, outputVector); |
| 223 | } |
| 224 | |
| 225 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 226 | } |
| 227 | |
| 228 | //---------------------------------------------------------------------------- |
| 229 | int vtkIOSSWriter::RequestInformation(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected