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

Method ProcessRequest

IO/XML/vtkXMLCompositeDataWriter.cxx:125–138  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

123
124//------------------------------------------------------------------------------
125vtkTypeBool 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//------------------------------------------------------------------------------
141void vtkXMLCompositeDataWriter::SetWriteMetaFile(int flag)

Callers

nothing calls this directly

Calls 3

RequestUpdateExtentMethod · 0.95
RequestDataMethod · 0.95
HasMethod · 0.45

Tested by

no test coverage detected