mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-12 22:26:13 -04:00
12 lines
281 B
C++
12 lines
281 B
C++
#pragma once
|
|
|
|
#include <QHexView/model/buffer/qdevicebuffer.h>
|
|
|
|
class QMemoryRefBuffer: public QDeviceBuffer {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QMemoryRefBuffer(QObject* parent = nullptr);
|
|
bool read(QIODevice* device) override;
|
|
void write(QIODevice* device) override;
|
|
};
|