ramview.h 294 B

123456789101112131415
  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. Q_OBJECT
  7. public:
  8. GRamView(QWidget* parent = nullptr);
  9. public slots:
  10. void OnCPUStepped();
  11. };