summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/profiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu/debugger/profiler.h')
-rw-r--r--src/yuzu/debugger/profiler.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/yuzu/debugger/profiler.h b/src/yuzu/debugger/profiler.h
deleted file mode 100644
index 4c8ccd3c2..000000000
--- a/src/yuzu/debugger/profiler.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// SPDX-FileCopyrightText: 2015 Citra Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include <QWidget>
-
-class QAction;
-class QHideEvent;
-class QShowEvent;
-
-class MicroProfileDialog : public QWidget {
- Q_OBJECT
-
-public:
- explicit MicroProfileDialog(QWidget* parent = nullptr);
-
- /// Returns a QAction that can be used to toggle visibility of this dialog.
- QAction* toggleViewAction();
-
-protected:
- void showEvent(QShowEvent* ev) override;
- void hideEvent(QHideEvent* ev) override;
-
-private:
- QAction* toggle_view_action = nullptr;
-};