2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00
yuzu/src/citra_qt/debugger/callstack.hxx
2015-01-04 09:36:57 -08:00

23 lines
432 B
C++

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <QDockWidget>
#include "ui_callstack.h"
class QStandardItemModel;
class CallstackWidget : public QDockWidget
{
Q_OBJECT
public:
CallstackWidget(QWidget* parent = 0);
public slots:
void OnCPUStepped();
private:
Ui::CallStack ui;
QStandardItemModel* callstack_model;
};