------------------------------------------------------------------------------
| 123 | |
| 124 | //------------------------------------------------------------------------------ |
| 125 | vtkTypeBool vtkXMLCompositeDataWriter::ProcessRequest( |
| 126 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 127 | { |
| 128 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 129 | { |
| 130 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 131 | } |
| 132 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 133 | { |
| 134 | return this->RequestData(request, inputVector, outputVector); |
| 135 | } |
| 136 | |
| 137 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 138 | } |
| 139 | |
| 140 | //------------------------------------------------------------------------------ |
| 141 | void vtkXMLCompositeDataWriter::SetWriteMetaFile(int flag) |
nothing calls this directly
no test coverage detected