| 316 | } |
| 317 | |
| 318 | std::vector<std::string> mitk::Preferences::ChildrenNames() const |
| 319 | { |
| 320 | std::vector<std::string> names; |
| 321 | |
| 322 | for (const auto& child : m_Children) |
| 323 | names.push_back(child->Name()); |
| 324 | |
| 325 | return names; |
| 326 | } |
| 327 | |
| 328 | mitk::IPreferences* mitk::Preferences::Parent() |
| 329 | { |