aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/ramview.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/ramview.hxx')
-rw-r--r--src/citra_qt/ramview.hxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/citra_qt/ramview.hxx b/src/citra_qt/ramview.hxx
new file mode 100644
index 00000000..1db1546a
--- /dev/null
+++ b/src/citra_qt/ramview.hxx
@@ -0,0 +1,12 @@
+#include "qhexedit.h"
+
+class GRamView : public QHexEdit
+{
+ Q_OBJECT
+
+public:
+ GRamView(QWidget* parent = NULL);
+
+public slots:
+ void OnCPUStepped();
+};