| 84 | } |
| 85 | |
| 86 | void mitk::Tool::Notify(InteractionEvent *interactionEvent, bool isHandled) |
| 87 | { |
| 88 | // to use the state machine pattern, |
| 89 | // the event is passed to the state machine interface to be handled |
| 90 | if (!isHandled) |
| 91 | { |
| 92 | this->HandleEvent(interactionEvent, nullptr); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | void mitk::Tool::ConnectActionsAndFunctions() |
| 97 | { |
nothing calls this directly
no test coverage detected