mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 00:17:55 -05:00
got rid of 'src' folders in each sub-project
This commit is contained in:
20
src/citra_qt/callstack.hxx
Normal file
20
src/citra_qt/callstack.hxx
Normal file
@ -0,0 +1,20 @@
|
||||
#include <QDockWidget>
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user