mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-03-06 10:37:42 +01:00
13 lines
161 B
C++
13 lines
161 B
C++
#include "qhexedit.h"
|
|
|
|
class GRamView : public QHexEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GRamView(QWidget* parent = NULL);
|
|
|
|
public slots:
|
|
void OnCPUStepped();
|
|
};
|