mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 03:40:05 +00:00 
			
		
		
		
	Moving isActive from radar product view to map settings
This commit is contained in:
		
							parent
							
								
									f7f86ec24a
								
							
						
					
					
						commit
						b78011a2d3
					
				
					 7 changed files with 35 additions and 30 deletions
				
			
		
							
								
								
									
										26
									
								
								scwx-qt/source/scwx/qt/map/map_settings.hpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								scwx-qt/source/scwx/qt/map/map_settings.hpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,26 @@ | |||
| #pragma once | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace qt | ||||
| { | ||||
| namespace map | ||||
| { | ||||
| 
 | ||||
| struct MapSettings | ||||
| { | ||||
|    explicit MapSettings() : isActive_ {false} {} | ||||
|    ~MapSettings() = default; | ||||
| 
 | ||||
|    MapSettings(const MapSettings&) = delete; | ||||
|    MapSettings& operator=(const MapSettings&) = delete; | ||||
| 
 | ||||
|    MapSettings(MapSettings&&) noexcept = default; | ||||
|    MapSettings& operator=(MapSettings&&) noexcept = default; | ||||
| 
 | ||||
|    bool isActive_; | ||||
| }; | ||||
| 
 | ||||
| } // namespace map
 | ||||
| } // namespace qt
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat