ramview.h 291 B

12345678910111213141516
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "qhexedit.h"
  5. class GRamView : public QHexEdit
  6. {
  7. Q_OBJECT
  8. public:
  9. GRamView(QWidget* parent = NULL);
  10. public slots:
  11. void OnCPUStepped();
  12. };