mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-23 11:37:05 -04:00
11 lines
293 B
C++
11 lines
293 B
C++
#pragma once
|
|
|
|
#include "hexcommand.h"
|
|
|
|
class InsertCommand: public HexCommand
|
|
{
|
|
public:
|
|
InsertCommand(QHexBuffer* buffer, QHexDocument* document, qint64 offset, const QByteArray& data, QUndoCommand* parent = nullptr);
|
|
void undo() override;
|
|
void redo() override;
|
|
};
|