mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 03:20:05 +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: | ||||
|    explicit AlertPaletteSettings(awips::Phenomenon phenomenon); | ||||
|    ~AlertPaletteSettings(); | ||||
|    ~AlertPaletteSettings() override; | ||||
| 
 | ||||
|    AlertPaletteSettings(const AlertPaletteSettings&)            = delete; | ||||
|    AlertPaletteSettings& operator=(const AlertPaletteSettings&) = delete; | ||||
|  |  | |||
|  | @ -14,7 +14,7 @@ class AudioSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit AudioSettings(); | ||||
|    ~AudioSettings(); | ||||
|    ~AudioSettings() override; | ||||
| 
 | ||||
|    AudioSettings(const AudioSettings&)            = delete; | ||||
|    AudioSettings& operator=(const AudioSettings&) = delete; | ||||
|  |  | |||
|  | @ -13,7 +13,7 @@ class GeneralSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit GeneralSettings(); | ||||
|    ~GeneralSettings(); | ||||
|    ~GeneralSettings() override; | ||||
| 
 | ||||
|    GeneralSettings(const GeneralSettings&)            = delete; | ||||
|    GeneralSettings& operator=(const GeneralSettings&) = delete; | ||||
|  |  | |||
|  | @ -14,7 +14,7 @@ class HotkeySettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit HotkeySettings(); | ||||
|    ~HotkeySettings(); | ||||
|    ~HotkeySettings() override; | ||||
| 
 | ||||
|    HotkeySettings(const HotkeySettings&)            = delete; | ||||
|    HotkeySettings& operator=(const HotkeySettings&) = delete; | ||||
|  |  | |||
|  | @ -15,7 +15,7 @@ class LineSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit LineSettings(const std::string& name); | ||||
|    ~LineSettings(); | ||||
|    ~LineSettings() override; | ||||
| 
 | ||||
|    LineSettings(const LineSettings&)            = delete; | ||||
|    LineSettings& operator=(const LineSettings&) = delete; | ||||
|  |  | |||
|  | @ -13,7 +13,7 @@ class MapSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit MapSettings(); | ||||
|    ~MapSettings(); | ||||
|    ~MapSettings() override; | ||||
| 
 | ||||
|    MapSettings(const MapSettings&)            = delete; | ||||
|    MapSettings& operator=(const MapSettings&) = delete; | ||||
|  |  | |||
|  | @ -16,7 +16,7 @@ class PaletteSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit PaletteSettings(); | ||||
|    ~PaletteSettings(); | ||||
|    ~PaletteSettings() override; | ||||
| 
 | ||||
|    PaletteSettings(const PaletteSettings&)            = delete; | ||||
|    PaletteSettings& operator=(const PaletteSettings&) = delete; | ||||
|  |  | |||
|  | @ -13,7 +13,7 @@ class ProductSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit ProductSettings(); | ||||
|    ~ProductSettings(); | ||||
|    ~ProductSettings() override; | ||||
| 
 | ||||
|    ProductSettings(const ProductSettings&)            = delete; | ||||
|    ProductSettings& operator=(const ProductSettings&) = delete; | ||||
|  |  | |||
|  | @ -14,7 +14,7 @@ class TextSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit TextSettings(); | ||||
|    ~TextSettings(); | ||||
|    ~TextSettings() override; | ||||
| 
 | ||||
|    TextSettings(const TextSettings&)            = delete; | ||||
|    TextSettings& operator=(const TextSettings&) = delete; | ||||
|  |  | |||
|  | @ -15,7 +15,7 @@ class UiSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit UiSettings(); | ||||
|    ~UiSettings(); | ||||
|    ~UiSettings() override; | ||||
| 
 | ||||
|    UiSettings(const UiSettings&)            = delete; | ||||
|    UiSettings& operator=(const UiSettings&) = delete; | ||||
|  |  | |||
|  | @ -13,7 +13,7 @@ class UnitSettings : public SettingsCategory | |||
| { | ||||
| public: | ||||
|    explicit UnitSettings(); | ||||
|    ~UnitSettings(); | ||||
|    ~UnitSettings() override; | ||||
| 
 | ||||
|    UnitSettings(const UnitSettings&)            = delete; | ||||
|    UnitSettings& operator=(const UnitSettings&) = delete; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 AdenKoperczak
						AdenKoperczak