| 61 | } |
| 62 | |
| 63 | void mitk::BaseData::UpdateOutputInformation() |
| 64 | { |
| 65 | if (this->GetSource()) |
| 66 | { |
| 67 | this->GetSource()->UpdateOutputInformation(); |
| 68 | } |
| 69 | if (m_TimeGeometry.IsNotNull()) |
| 70 | { |
| 71 | m_TimeGeometry->UpdateBoundingBox(); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | const mitk::TimeGeometry *mitk::BaseData::GetUpdatedTimeGeometry() |
| 76 | { |
nothing calls this directly
no test coverage detected