| 34 | } |
| 35 | |
| 36 | bool mitk::InteractionKeyEvent::IsEqual(const mitk::InteractionEvent &interactionEvent) const |
| 37 | { |
| 38 | const auto &keyEvent = static_cast<const Self &>(interactionEvent); |
| 39 | return (this->GetModifiers() == keyEvent.GetModifiers() && this->GetKey() == keyEvent.GetKey() && |
| 40 | Superclass::IsEqual(interactionEvent)); |
| 41 | } |
| 42 | |
| 43 | bool mitk::InteractionKeyEvent::IsSuperClassOf(const InteractionEvent::Pointer &baseClass) const |
| 44 | { |
nothing calls this directly
no test coverage detected