Add USB stub, add logging using spdlog
This commit is contained in:
20
inc/Usb.hpp
Normal file
20
inc/Usb.hpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include "IUsb.hpp"
|
||||
|
||||
#include <libusb-1.0/libusb.h>
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace ptprnt::driver {
|
||||
|
||||
class Usb : public IUsb {
|
||||
public:
|
||||
Usb();
|
||||
~Usb() override;
|
||||
|
||||
std::vector<UsbDevice> listDevices() override;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
} // namespace ptprnt::driver
|
Reference in New Issue
Block a user