mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +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
|
@ -75,6 +75,13 @@ public:
|
|||
m_ppc_symbol_db(ppc_symbol_db)
|
||||
{
|
||||
}
|
||||
~BranchWatchTableModel() override = default;
|
||||
|
||||
BranchWatchTableModel(const BranchWatchTableModel&) = delete;
|
||||
BranchWatchTableModel(BranchWatchTableModel&&) = delete;
|
||||
BranchWatchTableModel& operator=(const BranchWatchTableModel&) = delete;
|
||||
BranchWatchTableModel& operator=(BranchWatchTableModel&&) = delete;
|
||||
|
||||
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
||||
QVariant headerData(int section, Qt::Orientation orientation,
|
||||
int role = Qt::DisplayRole) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue