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

Method GetMTime

IO/Geometry/vtkSTLReader.cxx:52–63  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Overload standard modified time function. If locator is modified, then this object is modified as well.

Source from the content-addressed store, hash-verified

50// Overload standard modified time function. If locator is modified,
51// then this object is modified as well.
52vtkMTimeType vtkSTLReader::GetMTime()
53{
54 vtkMTimeType mTime1 = this->Superclass::GetMTime();
55
56 if (this->Locator)
57 {
58 vtkMTimeType mTime2 = this->Locator->GetMTime();
59 mTime1 = std::max(mTime1, mTime2);
60 }
61
62 return mTime1;
63}
64
65//------------------------------------------------------------------------------
66int vtkSTLReader::RequestData(vtkInformation* vtkNotUsed(request),

Callers 9

WriteBufferAndViewMethod · 0.45
RequestInformationMethod · 0.45
RequestDataMethod · 0.45
SetTimeValueMethod · 0.45
UpdateStatusMethod · 0.45

Calls 1

maxFunction · 0.50

Tested by

no test coverage detected