mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:20:06 +00:00
Add override to destructors of settings catigories
This commit is contained in:
parent
36339e613f
commit
f84a86a3a3
11 changed files with 11 additions and 11 deletions
|
|
@ -15,7 +15,7 @@ class AlertPaletteSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit AlertPaletteSettings(awips::Phenomenon phenomenon);
|
explicit AlertPaletteSettings(awips::Phenomenon phenomenon);
|
||||||
~AlertPaletteSettings();
|
~AlertPaletteSettings() override;
|
||||||
|
|
||||||
AlertPaletteSettings(const AlertPaletteSettings&) = delete;
|
AlertPaletteSettings(const AlertPaletteSettings&) = delete;
|
||||||
AlertPaletteSettings& operator=(const AlertPaletteSettings&) = delete;
|
AlertPaletteSettings& operator=(const AlertPaletteSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ class AudioSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit AudioSettings();
|
explicit AudioSettings();
|
||||||
~AudioSettings();
|
~AudioSettings() override;
|
||||||
|
|
||||||
AudioSettings(const AudioSettings&) = delete;
|
AudioSettings(const AudioSettings&) = delete;
|
||||||
AudioSettings& operator=(const AudioSettings&) = delete;
|
AudioSettings& operator=(const AudioSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class GeneralSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit GeneralSettings();
|
explicit GeneralSettings();
|
||||||
~GeneralSettings();
|
~GeneralSettings() override;
|
||||||
|
|
||||||
GeneralSettings(const GeneralSettings&) = delete;
|
GeneralSettings(const GeneralSettings&) = delete;
|
||||||
GeneralSettings& operator=(const GeneralSettings&) = delete;
|
GeneralSettings& operator=(const GeneralSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ class HotkeySettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit HotkeySettings();
|
explicit HotkeySettings();
|
||||||
~HotkeySettings();
|
~HotkeySettings() override;
|
||||||
|
|
||||||
HotkeySettings(const HotkeySettings&) = delete;
|
HotkeySettings(const HotkeySettings&) = delete;
|
||||||
HotkeySettings& operator=(const HotkeySettings&) = delete;
|
HotkeySettings& operator=(const HotkeySettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ class LineSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit LineSettings(const std::string& name);
|
explicit LineSettings(const std::string& name);
|
||||||
~LineSettings();
|
~LineSettings() override;
|
||||||
|
|
||||||
LineSettings(const LineSettings&) = delete;
|
LineSettings(const LineSettings&) = delete;
|
||||||
LineSettings& operator=(const LineSettings&) = delete;
|
LineSettings& operator=(const LineSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class MapSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit MapSettings();
|
explicit MapSettings();
|
||||||
~MapSettings();
|
~MapSettings() override;
|
||||||
|
|
||||||
MapSettings(const MapSettings&) = delete;
|
MapSettings(const MapSettings&) = delete;
|
||||||
MapSettings& operator=(const MapSettings&) = delete;
|
MapSettings& operator=(const MapSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ class PaletteSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit PaletteSettings();
|
explicit PaletteSettings();
|
||||||
~PaletteSettings();
|
~PaletteSettings() override;
|
||||||
|
|
||||||
PaletteSettings(const PaletteSettings&) = delete;
|
PaletteSettings(const PaletteSettings&) = delete;
|
||||||
PaletteSettings& operator=(const PaletteSettings&) = delete;
|
PaletteSettings& operator=(const PaletteSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class ProductSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit ProductSettings();
|
explicit ProductSettings();
|
||||||
~ProductSettings();
|
~ProductSettings() override;
|
||||||
|
|
||||||
ProductSettings(const ProductSettings&) = delete;
|
ProductSettings(const ProductSettings&) = delete;
|
||||||
ProductSettings& operator=(const ProductSettings&) = delete;
|
ProductSettings& operator=(const ProductSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ class TextSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit TextSettings();
|
explicit TextSettings();
|
||||||
~TextSettings();
|
~TextSettings() override;
|
||||||
|
|
||||||
TextSettings(const TextSettings&) = delete;
|
TextSettings(const TextSettings&) = delete;
|
||||||
TextSettings& operator=(const TextSettings&) = delete;
|
TextSettings& operator=(const TextSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ class UiSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit UiSettings();
|
explicit UiSettings();
|
||||||
~UiSettings();
|
~UiSettings() override;
|
||||||
|
|
||||||
UiSettings(const UiSettings&) = delete;
|
UiSettings(const UiSettings&) = delete;
|
||||||
UiSettings& operator=(const UiSettings&) = delete;
|
UiSettings& operator=(const UiSettings&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class UnitSettings : public SettingsCategory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit UnitSettings();
|
explicit UnitSettings();
|
||||||
~UnitSettings();
|
~UnitSettings() override;
|
||||||
|
|
||||||
UnitSettings(const UnitSettings&) = delete;
|
UnitSettings(const UnitSettings&) = delete;
|
||||||
UnitSettings& operator=(const UnitSettings&) = delete;
|
UnitSettings& operator=(const UnitSettings&) = delete;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue