summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/profiler.h
diff options
context:
space:
mode:
authorGravatar James Rowe2018-01-11 19:21:20 -0700
committerGravatar James Rowe2018-01-12 19:11:03 -0700
commitebf9a784a9f7f4148a669dbb39e7cd50df779a14 (patch)
treed585685a1c0a34b903af1d086d62560bf56bb29f /src/citra_qt/debugger/profiler.h
parentconfig: Default CPU core to Unicorn. (diff)
downloadyuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.gz
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.xz
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.zip
Massive removal of unused modules
Diffstat (limited to 'src/citra_qt/debugger/profiler.h')
-rw-r--r--src/citra_qt/debugger/profiler.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h
deleted file mode 100644
index eae1e9e3c..000000000
--- a/src/citra_qt/debugger/profiler.h
+++ /dev/null
@@ -1,27 +0,0 @@
1// Copyright 2015 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <QAbstractItemModel>
8#include <QDockWidget>
9#include <QTimer>
10#include "common/microprofile.h"
11
12class MicroProfileDialog : public QWidget {
13 Q_OBJECT
14
15public:
16 explicit MicroProfileDialog(QWidget* parent = nullptr);
17
18 /// Returns a QAction that can be used to toggle visibility of this dialog.
19 QAction* toggleViewAction();
20
21protected:
22 void showEvent(QShowEvent* ev) override;
23 void hideEvent(QHideEvent* ev) override;
24
25private:
26 QAction* toggle_view_action = nullptr;
27};