Add county database interface and test

This commit is contained in:
Dan Paulat 2022-10-25 23:21:26 -05:00
parent 25f73ae105
commit 305e5c3698
6 changed files with 214 additions and 3 deletions

View 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