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
342 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
2023-10-12 20:19:20 -04:00
#include <QtLogging>
2023-10-12 20:18:11 -04:00
#include "physis.hpp"
#include "qhexview.h"
class HexPart : public QHexView
{
2023-10-12 23:45:30 -04:00
Q_OBJECT
2023-10-12 20:18:11 -04:00
public:
explicit HexPart(QWidget *parent = nullptr);
void loadFile(physis_Buffer buffer);
};