citra-qt: Renamed all .hxx headers to .h
This commit is contained in:
parent
9c8b867d86
commit
b0a14cfe7f
30 changed files with 45 additions and 45 deletions
23
src/citra_qt/debugger/callstack.h
Normal file
23
src/citra_qt/debugger/callstack.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue