remove extra copies (#3081)
This commit is contained in:
parent
4cbec71882
commit
fcfb2b12b7
5 changed files with 5 additions and 20 deletions
|
@ -24,11 +24,8 @@ signals:
|
|||
public slots:
|
||||
|
||||
private:
|
||||
CardDatabaseSettings(QString settingPath, QObject *parent = 0);
|
||||
explicit CardDatabaseSettings(QString settingPath, QObject *parent = nullptr);
|
||||
CardDatabaseSettings( const CardDatabaseSettings& /*other*/ );
|
||||
CardDatabaseSettings( CardDatabaseSettings& /*other*/ );
|
||||
CardDatabaseSettings( volatile const CardDatabaseSettings& /*other*/ );
|
||||
CardDatabaseSettings( volatile CardDatabaseSettings& /*other*/ );
|
||||
};
|
||||
|
||||
#endif // CARDDATABASESETTINGS_H
|
||||
|
|
|
@ -29,11 +29,8 @@ signals:
|
|||
public slots:
|
||||
|
||||
private:
|
||||
GameFiltersSettings(QString settingPath,QObject *parent = 0);
|
||||
explicit GameFiltersSettings(QString settingPath,QObject *parent = nullptr);
|
||||
GameFiltersSettings( const GameFiltersSettings& /*other*/ );
|
||||
GameFiltersSettings( GameFiltersSettings& /*other*/ );
|
||||
GameFiltersSettings( volatile const GameFiltersSettings& /*other*/ );
|
||||
GameFiltersSettings( volatile GameFiltersSettings& /*other*/ );
|
||||
|
||||
QString hashGameType(const QString &gameType) const;
|
||||
};
|
||||
|
|
|
@ -53,11 +53,8 @@ signals:
|
|||
public slots:
|
||||
|
||||
private:
|
||||
LayoutsSettings(QString settingPath,QObject *parent = 0);
|
||||
explicit LayoutsSettings(QString settingPath,QObject *parent = nullptr);
|
||||
LayoutsSettings( const LayoutsSettings& /*other*/ );
|
||||
LayoutsSettings( LayoutsSettings& /*other*/ );
|
||||
LayoutsSettings( volatile const LayoutsSettings& /*other*/ );
|
||||
LayoutsSettings( volatile LayoutsSettings& /*other*/ );
|
||||
};
|
||||
|
||||
#endif // LAYOUTSSETTINGS_H
|
||||
|
|
|
@ -19,11 +19,8 @@ signals:
|
|||
public slots:
|
||||
|
||||
private:
|
||||
MessageSettings(QString settingPath, QObject *parent = 0);
|
||||
explicit MessageSettings(QString settingPath, QObject *parent = nullptr);
|
||||
MessageSettings( const MessageSettings& /*other*/ );
|
||||
MessageSettings( MessageSettings& /*other*/ );
|
||||
MessageSettings( volatile const MessageSettings& /*other*/ );
|
||||
MessageSettings( volatile MessageSettings& /*other*/ );
|
||||
};
|
||||
|
||||
#endif // MESSAGESETTINGS_H
|
||||
|
|
|
@ -47,11 +47,8 @@ signals:
|
|||
public slots:
|
||||
|
||||
private:
|
||||
ServersSettings(QString settingPath,QObject *parent = 0);
|
||||
explicit ServersSettings(QString settingPath,QObject *parent = nullptr);
|
||||
ServersSettings( const ServersSettings& /*other*/ );
|
||||
ServersSettings( ServersSettings& /*other*/ );
|
||||
ServersSettings( volatile const ServersSettings& /*other*/ );
|
||||
ServersSettings( volatile ServersSettings& /*other*/ );
|
||||
};
|
||||
|
||||
#endif // SERVERSSETTINGS_H
|
||||
|
|
Loading…
Reference in a new issue