summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.hxx
diff options
context:
space:
mode:
authorMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:30:53 +0200
committerMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:34:23 +0200
commite5f09b8be65c06927164428b5d400024e2388dbc (patch)
tree0f0fd4035bcc88c0de5a47a7d3c64b4f67453897 /src/citra_qt/main.hxx
parentMerge branch 'hle-interface' (diff)
downloadyuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.gz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.bz2
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.lz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.xz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.zst
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.zip
Diffstat (limited to 'src/citra_qt/main.hxx')
-rw-r--r--src/citra_qt/main.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/citra_qt/main.hxx b/src/citra_qt/main.hxx
index 401705698..77d08f072 100644
--- a/src/citra_qt/main.hxx
+++ b/src/citra_qt/main.hxx
@@ -7,8 +7,9 @@
class GImageInfo;
class GRenderWindow;
-class GDisAsmView;
-class GARM11RegsView;
+class DisassemblerWidget;
+class RegistersWidget;
+class CallstackWidget;
class GMainWindow : public QMainWindow
{
@@ -44,8 +45,10 @@ private:
Ui::MainWindow ui;
GRenderWindow* render_window;
- GDisAsmView* disasm;
- GARM11RegsView* arm_regs;
+
+ DisassemblerWidget* disasmWidget;
+ RegistersWidget* registersWidget;
+ CallstackWidget* callstackWidget;
};
#endif // _CITRA_QT_MAIN_HXX_