Formatting...

This commit is contained in:
2022-11-12 18:37:24 +01:00
parent d7dfdc4739
commit f09e4ab5c8
6 changed files with 37 additions and 36 deletions

View File

@@ -8,13 +8,13 @@
namespace ptprnt::driver {
class Usb : public IUsb {
public:
public:
Usb();
~Usb() override;
std::optional<std::vector<UsbDevice>> getDevices() override;
private:
private:
std::vector<UsbDevice> mDevices{};
};