mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:50:06 +00:00
25 lines
424 B
C++
25 lines
424 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);
|
|
|
|
} // namespace CountyDatabase
|
|
} // namespace config
|
|
} // namespace qt
|
|
} // namespace scwx
|