1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-06 17:57:45 +00:00
novus/parts/hex/hexpart.h

19 lines
No EOL
342 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QtLogging>
#include "physis.hpp"
#include "qhexview.h"
class HexPart : public QHexView
{
Q_OBJECT
public:
explicit HexPart(QWidget *parent = nullptr);
void loadFile(physis_Buffer buffer);
};