diff options
Diffstat (limited to 'src/citra_qt/debugger/ramview.h')
| -rw-r--r-- | src/citra_qt/debugger/ramview.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/ramview.h b/src/citra_qt/debugger/ramview.h new file mode 100644 index 000000000..18423036f --- /dev/null +++ b/src/citra_qt/debugger/ramview.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "qhexedit.h" | ||
| 6 | |||
| 7 | class GRamView : public QHexEdit | ||
| 8 | { | ||
| 9 | Q_OBJECT | ||
| 10 | |||
| 11 | public: | ||
| 12 | GRamView(QWidget* parent = NULL); | ||
| 13 | |||
| 14 | public slots: | ||
| 15 | void OnCPUStepped(); | ||
| 16 | }; | ||