| 60 | } |
| 61 | |
| 62 | bool mitk::MousePressEvent::IsEqual(const mitk::InteractionEvent &interactionEvent) const |
| 63 | { |
| 64 | const auto &mpe = static_cast<const mitk::MousePressEvent &>(interactionEvent); |
| 65 | return (this->GetEventButton() == mpe.GetEventButton() && this->GetModifiers() == mpe.GetModifiers() && |
| 66 | this->GetButtonStates() == mpe.GetButtonStates() && Superclass::IsEqual(interactionEvent)); |
| 67 | } |
| 68 | |
| 69 | bool mitk::MousePressEvent::IsSuperClassOf(const InteractionEvent::Pointer &baseClass) const |
| 70 | { |
nothing calls this directly
no test coverage detected