------------------------------------------------------------------------------
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | vtkTypeBool vtkHDFWriter::ProcessRequest( |
| 115 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 116 | { |
| 117 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 118 | { |
| 119 | return this->RequestInformation(request, inputVector, outputVector); |
| 120 | } |
| 121 | else if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 122 | { |
| 123 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 124 | } |
| 125 | else if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 126 | { |
| 127 | return this->RequestData(request, inputVector, outputVector); |
| 128 | } |
| 129 | |
| 130 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 131 | } |
| 132 | |
| 133 | //------------------------------------------------------------------------------ |
| 134 | int vtkHDFWriter::RequestInformation(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected