mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 07:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <scwx/awips/phenomenon.hpp>
 | |
| #include <scwx/qt/map/map_context.hpp>
 | |
| 
 | |
| #include <memory>
 | |
| #include <string>
 | |
| #include <vector>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace map
 | |
| {
 | |
| 
 | |
| class AlertLayerImpl;
 | |
| 
 | |
| class AlertLayer
 | |
| {
 | |
| public:
 | |
|    explicit AlertLayer(std::shared_ptr<MapContext> context);
 | |
|    ~AlertLayer();
 | |
| 
 | |
|    std::vector<std::string> AddLayers(awips::Phenomenon  phenomenon,
 | |
|                                       const std::string& before = {});
 | |
| 
 | |
| private:
 | |
|    std::unique_ptr<AlertLayerImpl> p;
 | |
| };
 | |
| 
 | |
| } // namespace map
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
