From 63e46abdb8764bc97e91bae862c8d461e61b1965 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 8 Apr 2014 19:25:03 -0400 Subject: got rid of 'src' folders in each sub-project --- src/citra_qt/callstack.hxx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/citra_qt/callstack.hxx (limited to 'src/citra_qt/callstack.hxx') 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 @@ +#include +#include "ui_callstack.h" +#include "platform.h" + +class QStandardItemModel; + +class GCallstackView : public QDockWidget +{ + Q_OBJECT + +public: + GCallstackView(QWidget* parent = 0); + +public slots: + void OnCPUStepped(); + +private: + Ui::CallStack ui; + QStandardItemModel* callstack_model; +}; -- cgit v1.2.3