| 15 | //----- InputDevice ---------------------------------------------------------------------------- |
| 16 | |
| 17 | InputDevice::InputDevice(const std::string & deviceName, unsigned long vendorId, unsigned long productId) |
| 18 | : name(deviceName), vendor(vendorId), product(productId) |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | bool InputDevice::operator==(const InputDevice & b) const |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected