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

15 lines
306 B
C
Raw Normal View History

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