mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:10:06 +00:00
Add county database interface and test
This commit is contained in:
parent
25f73ae105
commit
305e5c3698
6 changed files with 214 additions and 3 deletions
22
scwx-qt/source/scwx/qt/config/county_database.hpp
Normal file
22
scwx-qt/source/scwx/qt/config/county_database.hpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace config
|
||||
{
|
||||
namespace CountyDatabase
|
||||
{
|
||||
|
||||
void Initialize();
|
||||
std::string GetCountyName(const std::string& id);
|
||||
|
||||
} // namespace CountyDatabase
|
||||
} // namespace config
|
||||
} // namespace qt
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue