diff options
Diffstat (limited to 'src/citra_qt/callstack.hxx')
| -rw-r--r-- | src/citra_qt/callstack.hxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/citra_qt/callstack.hxx b/src/citra_qt/callstack.hxx new file mode 100644 index 000000000..60b24f236 --- /dev/null +++ b/src/citra_qt/callstack.hxx | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #include <QDockWidget> | ||
| 2 | #include "ui_callstack.h" | ||
| 3 | #include "platform.h" | ||
| 4 | |||
| 5 | class QStandardItemModel; | ||
| 6 | |||
| 7 | class GCallstackView : public QDockWidget | ||
| 8 | { | ||
| 9 | Q_OBJECT | ||
| 10 | |||
| 11 | public: | ||
| 12 | GCallstackView(QWidget* parent = 0); | ||
| 13 | |||
| 14 | public slots: | ||
| 15 | void OnCPUStepped(); | ||
| 16 | |||
| 17 | private: | ||
| 18 | Ui::CallStack ui; | ||
| 19 | QStandardItemModel* callstack_model; | ||
| 20 | }; | ||