| 37 | |
| 38 | MTimeWatcher() = default; |
| 39 | explicit MTimeWatcher(vtkObject* o) |
| 40 | : MTime{ o->GetMTime() } |
| 41 | { |
| 42 | } |
| 43 | bool operator()(vtkObject* o) const { return o->GetMTime() <= this->MTime; } |
| 44 | void Reset(vtkObject* o) { this->MTime = o->GetMTime(); } |
| 45 | bool MTimeIsValid(vtkObject* o) const { return o->GetMTime() <= this->MTime; } |
no test coverage detected