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

Method GetMTime

Testing/GenericBridge/vtkBridgeDataSet.cxx:459–472  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Datasets are composite objects and need to check each part for MTime.

Source from the content-addressed store, hash-verified

457// Description:
458// Datasets are composite objects and need to check each part for MTime.
459vtkMTimeType vtkBridgeDataSet::GetMTime()
460{
461 vtkMTimeType result;
462 vtkMTimeType mtime;
463
464 result = this->Superclass::GetMTime();
465
466 if (this->Implementation != nullptr)
467 {
468 mtime = this->Implementation->GetMTime();
469 result = (mtime > result ? mtime : result);
470 }
471 return result;
472}
473
474//------------------------------------------------------------------------------
475// Description:

Callers 2

ComputeBoundsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected