| 38 | namespace protocol |
| 39 | { |
| 40 | CommandTransaction::CommandTransaction(libusb_device_handle *handle, int inbound_endpoint, int outbound_endpoint) : |
| 41 | handle_(handle), |
| 42 | inbound_endpoint_(inbound_endpoint), |
| 43 | outbound_endpoint_(outbound_endpoint), |
| 44 | timeout_(1000) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | CommandTransaction::~CommandTransaction() {} |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected