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