| 1632 | } |
| 1633 | |
| 1634 | bool mitk::nnInteractiveTool::Impl::Undo() const |
| 1635 | { |
| 1636 | this->ExecuteSession("nni_undone = bool(session.undo())\n"); |
| 1637 | |
| 1638 | const auto undone = m_PythonContext->GetVariableAsBool("nni_undone").value_or(false); |
| 1639 | m_PythonContext->Execute("del nni_undone\n"); |
| 1640 | |
| 1641 | return undone; |
| 1642 | } |
no test coverage detected