mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Branch Watch Tool: Add Rule Of 5 And Remove Unnecessary Include
This commit is contained in:
@ -9,12 +9,11 @@
|
||||
#include <QDialog>
|
||||
#include <QModelIndexList>
|
||||
|
||||
#include "Core/Core.h"
|
||||
|
||||
namespace Core
|
||||
{
|
||||
class BranchWatch;
|
||||
class CPUThreadGuard;
|
||||
enum class State;
|
||||
class System;
|
||||
} // namespace Core
|
||||
class PPCSymbolDB;
|
||||
@ -54,6 +53,11 @@ public:
|
||||
QWidget* parent = nullptr);
|
||||
~BranchWatchDialog() override;
|
||||
|
||||
BranchWatchDialog(const BranchWatchDialog&) = delete;
|
||||
BranchWatchDialog(BranchWatchDialog&&) = delete;
|
||||
BranchWatchDialog& operator=(const BranchWatchDialog&) = delete;
|
||||
BranchWatchDialog& operator=(BranchWatchDialog&&) = delete;
|
||||
|
||||
protected:
|
||||
void hideEvent(QHideEvent* event) override;
|
||||
void showEvent(QShowEvent* event) override;
|
||||
|
Reference in New Issue
Block a user