| 101 | } |
| 102 | |
| 103 | InputFilter::MouseButtonCondition::MouseButtonCondition(IEventQueue *events, const IPlatformScreen::ButtonInfo &info) |
| 104 | : m_button(info.m_button), |
| 105 | m_mask(info.m_mask), |
| 106 | m_events(events) |
| 107 | { |
| 108 | // do nothing |
| 109 | } |
| 110 | |
| 111 | InputFilter::MouseButtonCondition::MouseButtonCondition(IEventQueue *events, ButtonID button, KeyModifierMask mask) |
| 112 | : m_button(button), |
nothing calls this directly
no outgoing calls
no test coverage detected