mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
18 lines
361 B
C++
18 lines
361 B
C++
#include "testing/testing.hpp"
|
|
|
|
#include "storage/storage_tests/helpers.hpp"
|
|
|
|
#include "storage/country_info_getter.hpp"
|
|
|
|
#include "platform/platform.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace storage
|
|
{
|
|
std::unique_ptr<storage::CountryInfoGetter> CreateCountryInfoGetter()
|
|
{
|
|
return CountryInfoReader::CreateCountryInfoGetter(GetPlatform());
|
|
}
|
|
} // namespace storage
|