mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Branch Watch Tool: Add Rule Of 5 And Remove Unnecessary Include
This commit is contained in:
parent
ecce8e81c8
commit
4a2ec86a9a
3 changed files with 19 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue