* \brief Return the TimeGeometry of the data as const pointer. * * \warning No update will be called. Use GetUpdatedTimeGeometry() if you cannot * be sure that the geometry is up-to-date. * * Normally used in GenerateOutputInformation of subclasses of BaseProcess. * * \return Const pointer to the TimeGeometry, or nullptr if not set. * \sa GetUpdatedTimeGeome
| 150 | * \sa GetUpdatedTimeGeometry, GetGeometry |
| 151 | */ |
| 152 | const mitk::TimeGeometry *GetTimeGeometry() const |
| 153 | { |
| 154 | return m_TimeGeometry.GetPointer(); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * \brief Return the TimeGeometry of the data as non-const pointer. |
no test coverage detected