------------------------------------------------------------------------------
| 2979 | |
| 2980 | //------------------------------------------------------------------------------ |
| 2981 | vtkMTimeType vtkMPASReader::GetMTime() |
| 2982 | { |
| 2983 | vtkMTimeType result = this->Superclass::GetMTime(); |
| 2984 | result = std::max(result, this->CellDataArraySelection->GetMTime()); |
| 2985 | result = std::max(result, this->PointDataArraySelection->GetMTime()); |
| 2986 | // Excluded, as this just manages a cache: |
| 2987 | // result = std::max(result, this->Internals->extraDimTime.GetMTime()); |
| 2988 | result = std::max(result, this->Internals->dimMetaDataTime.GetMTime()); |
| 2989 | return result; |
| 2990 | } |
| 2991 | |
| 2992 | //------------------------------------------------------------------------------ |
| 2993 | // Print self. |
no test coverage detected