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

Method RequestData

IO/XML/vtkXMLGenericDataObjectReader.cxx:323–336  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

321
322//------------------------------------------------------------------------------
323int vtkXMLGenericDataObjectReader::RequestData(
324 vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
325{
326 // reader is created in RequestDataObject.
327 if (this->Reader != nullptr)
328 {
329 // RequestData() would be more appropriate but it is protected.
330 return this->Reader->ProcessRequest(request, inputVector, outputVector);
331 }
332 else
333 {
334 return 0;
335 }
336}
337
338//------------------------------------------------------------------------------
339void vtkXMLGenericDataObjectReader::PrintSelf(ostream& os, vtkIndent indent)

Callers

nothing calls this directly

Calls 1

ProcessRequestMethod · 0.45

Tested by

no test coverage detected