Files
comaps/libs/search/region_info_getter.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

31 lines
716 B
C++

#pragma once
#include "storage/country_tree.hpp"
#include "storage/storage_defines.hpp"
#include "platform/get_text_by_id.hpp"
#include <memory>
#include <string>
namespace search
{
class RegionInfoGetter
{
public:
void LoadCountriesTree();
void SetLocale(std::string const & locale);
std::string GetLocalizedFullName(storage::CountryId const & id) const;
using NameBufferT = buffer_vector<std::string, 4>;
void GetLocalizedFullName(storage::CountryId const & id, NameBufferT & nameParts) const;
std::string GetLocalizedCountryName(storage::CountryId const & id) const;
private:
storage::CountryTree m_countries;
std::unique_ptr<platform::GetTextById> m_nameGetter;
};
} // namespace search