mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-07 10:17:44 +00:00
15 lines
306 B
C
15 lines
306 B
C
|
// 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);
|
||
|
};
|