1
0
Fork 0
mirror of https://github.com/LongSoft/UEFITool.git synced 2025-05-23 11:37:05 -04:00
UEFITool/UEFITool/qhexview5/model/commands/insertcommand.h
Nikolaj Schlej cba31d826a Replace QHexEdit2 with QHexView5
New widget adds better look-and-feel and comes with free proper dark mode support.
2023-04-23 00:55:05 -07:00

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;
};