summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/profiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/debugger/profiler.h')
-rw-r--r--src/citra_qt/debugger/profiler.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h
index 3b38ed8ec..d8c6487aa 100644
--- a/src/citra_qt/debugger/profiler.h
+++ b/src/citra_qt/debugger/profiler.h
@@ -7,21 +7,20 @@
#include <QAbstractItemModel>
#include <QDockWidget>
#include <QTimer>
-
-#include "ui_profiler.h"
-
#include "common/microprofile.h"
#include "common/profiler_reporting.h"
+#include "ui_profiler.h"
-class ProfilerModel : public QAbstractItemModel
-{
+class ProfilerModel : public QAbstractItemModel {
Q_OBJECT
public:
ProfilerModel(QObject* parent);
- QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
- QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override;
+ QVariant headerData(int section, Qt::Orientation orientation,
+ int role = Qt::DisplayRole) const override;
+ QModelIndex index(int row, int column,
+ const QModelIndex& parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex& child) const override;
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
@@ -34,8 +33,7 @@ private:
Common::Profiling::AggregatedFrameResult results;
};
-class ProfilerWidget : public QDockWidget
-{
+class ProfilerWidget : public QDockWidget {
Q_OBJECT
public:
@@ -51,7 +49,6 @@ private:
QTimer update_timer;
};
-
class MicroProfileDialog : public QWidget {
Q_OBJECT