| 13 | #include <mitkExtractTimeGrid.h> |
| 14 | |
| 15 | mitk::ModelBase::TimeGridType mitk::ExtractTimeGrid(const Image* image) |
| 16 | { |
| 17 | mitk::ModelBase::TimeGridType result; |
| 18 | if (image) |
| 19 | { |
| 20 | result = ExtractTimeGrid(image->GetTimeGeometry()); |
| 21 | } |
| 22 | return result; |
| 23 | }; |
| 24 | |
| 25 | mitk::ModelBase::TimeGridType mitk::ExtractTimeGrid(const TimeGeometry* geometry) |
| 26 | { |
nothing calls this directly
no test coverage detected