supercell-wx/scwx-qt/source/scwx/qt/config/county_database.hpp
2023-12-08 05:15:57 -06:00

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