| 1619 | } |
| 1620 | |
| 1621 | void mitk::MultiLabelSegmentation::SetAllLabelsLockedByName(GroupIndexType group, const std::string_view name, bool locked) |
| 1622 | { |
| 1623 | auto setLock = [locked](Label* l) { l->SetLocked(locked); }; |
| 1624 | |
| 1625 | this->ApplyToLabels(this->GetLabelValuesByName(group, name), setLock); |
| 1626 | } |
| 1627 | |
| 1628 | bool mitk::Equal(const mitk::MultiLabelSegmentation &leftHandSide, |
| 1629 | const mitk::MultiLabelSegmentation &rightHandSide, |
nothing calls this directly
no test coverage detected