mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-30 21:30:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			609 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			609 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <memory>
 | |
| #include <string>
 | |
| #include <unordered_map>
 | |
| #include <vector>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace config
 | |
| {
 | |
| namespace CountyDatabase
 | |
| {
 | |
| 
 | |
| void        Initialize();
 | |
| std::string GetCountyName(const std::string& id);
 | |
| std::unordered_map<std::string, std::string>
 | |
| GetCounties(const std::string& state);
 | |
| const std::unordered_map<std::string, std::string>& GetStates();
 | |
| const std::unordered_map<std::string, std::string>& GetWFOs();
 | |
| const std::string& GetWFOName(const std::string& wfoId);
 | |
| 
 | |
| } // namespace CountyDatabase
 | |
| } // namespace config
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
