| 103 | } |
| 104 | |
| 105 | std::string mitk::InteractionEventHandler::MapToEventVariant(InteractionEvent *interactionEvent) |
| 106 | { |
| 107 | if (m_EventConfig.IsValid()) |
| 108 | { |
| 109 | return m_EventConfig.GetMappedEvent(interactionEvent); |
| 110 | } |
| 111 | else |
| 112 | { |
| 113 | return ""; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void mitk::InteractionEventHandler::ConfigurationChanged() |
| 118 | { |
nothing calls this directly
no test coverage detected