mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-20 14:15:11 +00:00
31 lines
605 B
C++
31 lines
605 B
C++
//
|
|
// Created by anonymus-raccoon on 2/17/20.
|
|
//
|
|
|
|
#ifndef COMSQUARE_RAMVIEWER_HPP
|
|
#define COMSQUARE_RAMVIEWER_HPP
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
|
|
namespace ComSquare
|
|
{
|
|
class SNES;
|
|
namespace Debugger
|
|
{
|
|
class RamViewer : public QMainWindow {
|
|
private:
|
|
//! @brief SNES containing all rams to view.
|
|
SNES &_snes;
|
|
//! @brief The layout of the viewer.
|
|
// Ui::RamView _ui;
|
|
public:
|
|
explicit RamViewer(SNES &snes);
|
|
RamViewer(const RamViewer &) = delete;
|
|
RamViewer &operator=(const RamViewer &) = delete;
|
|
~RamViewer() override = default;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //COMSQUARE_RAMVIEWER_HPP
|