| 20 | } |
| 21 | |
| 22 | bool InputDevice::operator==(const InputDevice & b) const |
| 23 | { |
| 24 | return (name == b.name && vendor == b.vendor && product == b.product); |
| 25 | } |
| 26 | |
| 27 | //----- InputManager --------------------------------------------------------------------------- |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected