mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 22:15:15 +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();
|
||
|
};
|