MCPcopy Create free account
hub / github.com/Kitware/VTK / ProcessRequest

Method ProcessRequest

IO/HDF/vtkHDFWriter.cxx:114–131  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

112
113//------------------------------------------------------------------------------
114vtkTypeBool 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//------------------------------------------------------------------------------
134int vtkHDFWriter::RequestInformation(vtkInformation* vtkNotUsed(request),

Callers

nothing calls this directly

Calls 4

RequestInformationMethod · 0.95
RequestUpdateExtentMethod · 0.95
RequestDataMethod · 0.95
HasMethod · 0.45

Tested by

no test coverage detected