mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 13:00:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			401 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			401 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace awips
 | |
| {
 | |
| 
 | |
| enum class ThreatCategory : int
 | |
| {
 | |
|    Base         = 0,
 | |
|    Significant  = 1,
 | |
|    Considerable = 2,
 | |
|    Destructive  = 3,
 | |
|    Catastrophic = 4,
 | |
|    Unknown
 | |
| };
 | |
| 
 | |
| ThreatCategory     GetThreatCategory(const std::string& name);
 | |
| const std::string& GetThreatCategoryName(ThreatCategory threatCategory);
 | |
| 
 | |
| } // namespace awips
 | |
| } // namespace scwx
 | 
