| 21 | } |
| 22 | |
| 23 | bool mitk::InternalEvent::IsEqual(const mitk::InteractionEvent &interactionEvent) const |
| 24 | { |
| 25 | const auto &internalEvent = static_cast<const mitk::InternalEvent &>(interactionEvent); |
| 26 | return (m_SignalName == internalEvent.GetSignalName() && Superclass::IsEqual(interactionEvent)); |
| 27 | } |
| 28 | |
| 29 | mitk::InternalEvent::~InternalEvent() |
| 30 | { |
nothing calls this directly
no test coverage detected