USB updates, remove iostream usage

This commit is contained in:
2023-08-01 18:19:50 +02:00
parent c3f200fee4
commit 458806c6af
8 changed files with 75 additions and 67 deletions

View File

@@ -15,6 +15,7 @@ class Usb : public IUsb {
bool close(UsbDevice) override;
private:
libusb_device** mLibUsbDevs;
// TODO: This should be a std::map with handles & locking on access
std::vector<UsbDevice> mDevices{};
};