AcquisitionDevice: Remove copy constructor/assignment operator

This commit is contained in:
2023-11-10 11:36:41 +01:00
parent 7993efb047
commit 04c2e41cf5

View File

@@ -87,6 +87,9 @@ protected:
void UnmapBuffers();
void MapBuffersStandard(size_t c2h_buffer_count, size_t h2c_buffer_count, int16_t numa_node);
public:
AcquisitionDevice(const AcquisitionDevice &other) = delete;
AcquisitionDevice &operator=(const AcquisitionDevice &other) = delete;
static constexpr const uint64_t HandleNotValid = UINT64_MAX;
virtual ~AcquisitionDevice() { UnmapBuffers(); };