| 140 | } |
| 141 | |
| 142 | void mitk::Annotation::SetIntProperty(const std::string &propertyKey, int intValue) |
| 143 | { |
| 144 | this->m_PropertyList->SetProperty(propertyKey, mitk::IntProperty::New(intValue)); |
| 145 | Modified(); |
| 146 | } |
| 147 | void mitk::Annotation::SetBoolProperty(const std::string &propertyKey, bool boolValue) |
| 148 | { |
| 149 | this->m_PropertyList->SetProperty(propertyKey, mitk::BoolProperty::New(boolValue)); |