| 37 | { |
| 38 | |
| 39 | TransferPool::TransferPool(libusb_device_handle* device_handle, unsigned char device_endpoint) : |
| 40 | callback_(0), |
| 41 | device_handle_(device_handle), |
| 42 | device_endpoint_(device_endpoint), |
| 43 | buffer_(0), |
| 44 | buffer_size_(0), |
| 45 | enable_submit_(false) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | TransferPool::~TransferPool() |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected