mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 02:20:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			489 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();
 | |
| 
 | |
| } // namespace CountyDatabase
 | |
| } // namespace config
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
