| 97 | } |
| 98 | |
| 99 | void mitk::ExampleInteractor::ConfigurationChanged() |
| 100 | { |
| 101 | // read how many points we accept from the config properties |
| 102 | mitk::PropertyList::Pointer properties = GetPropertyList(); |
| 103 | std::string maxNumber; |
| 104 | properties->GetStringProperty("NumberOfPoints", maxNumber); |
| 105 | m_MaximalNumberOfPoints = atoi(maxNumber.c_str()); |
| 106 | } |
nothing calls this directly
no test coverage detected