Change build system to meson
This commit is contained in:
@@ -1,21 +1,22 @@
|
||||
|
||||
#include "IDriver.hpp"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include <libusb-1.0/libusb.h>
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace ptprnt::driver {
|
||||
|
||||
class P700Driver : public IDriver
|
||||
{
|
||||
public:
|
||||
P700Driver(uint16_t UsbDevVendor = 0x04f9, uint16_t UsbDevId = 0x2061);
|
||||
~P700Driver() override;
|
||||
class P700Driver : public IDriver {
|
||||
public:
|
||||
P700Driver(uint16_t UsbDevVendor = 0x04f9, uint16_t UsbDevId = 0x2061);
|
||||
~P700Driver() override;
|
||||
|
||||
driver::info getInfo() override;
|
||||
bool open() override;
|
||||
bool close() override;
|
||||
bool command() override;
|
||||
driver::info getInfo() override;
|
||||
bool open() override;
|
||||
bool close() override;
|
||||
bool command() override;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace ptprnt::driver
|
Reference in New Issue
Block a user