| 64 | } |
| 65 | |
| 66 | vtkMTimeType vtkCompositeCellGridReader::GetMTime() |
| 67 | { |
| 68 | vtkMTimeType result = this->Superclass::GetMTime(); |
| 69 | vtkMTimeType ctt = this->CellTypeSelection->GetMTime(); |
| 70 | vtkMTimeType cat = this->CellAttributeSelection->GetMTime(); |
| 71 | result = std::max(result, ctt); |
| 72 | result = std::max(result, cat); |
| 73 | return result; |
| 74 | } |
| 75 | |
| 76 | int vtkCompositeCellGridReader::FillOutputPortInformation( |
| 77 | int vtkNotUsed(port), vtkInformation* info) |
no test coverage detected