| 183 | } |
| 184 | |
| 185 | void mitk::ROI::Element::SetDefaultProperties(PropertyList* properties) |
| 186 | { |
| 187 | if (properties == nullptr) |
| 188 | { |
| 189 | m_DefaultProperties = PropertyList::New(); |
| 190 | } |
| 191 | else |
| 192 | { |
| 193 | m_DefaultProperties = properties; |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | mitk::PropertyList* mitk::ROI::Element::GetProperties(TimeStepType t) const |
| 198 | { |
no test coverage detected