Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2019-02-12 19:13:51 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2019-02-13 14:58:09 +0300
commitb1bec1c75c8f6eaa0b16911833a92b2b9ce82ae3 (patch)
treeb2e09955d50d2e97ffd215e086dd081586735dae /partners_api/taxi_places.hpp
parentb4351494fbcafee4c421692bafc7c5d310bdab3d (diff)
[storage] Removed the T prefix from type aliases and type names.
Diffstat (limited to 'partners_api/taxi_places.hpp')
-rw-r--r--partners_api/taxi_places.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/partners_api/taxi_places.hpp b/partners_api/taxi_places.hpp
index da019e17e7..5b2503047c 100644
--- a/partners_api/taxi_places.hpp
+++ b/partners_api/taxi_places.hpp
@@ -19,7 +19,7 @@ public:
struct Country
{
- storage::TCountryId m_id;
+ storage::CountryId m_id;
std::vector<std::string> m_cities;
DECLARE_VISITOR_AND_DEBUG_PRINT(Country, visitor(m_id, "id"), visitor(m_cities, "cities"))
@@ -27,15 +27,15 @@ public:
bool IsCountriesEmpty() const;
bool IsMwmsEmpty() const;
- bool Has(storage::TCountryId const & id, std::string const & city) const;
- bool Has(storage::TCountryId const & mwmId) const;
+ bool Has(storage::CountryId const & id, std::string const & city) const;
+ bool Has(storage::CountryId const & mwmId) const;
DECLARE_VISITOR_AND_DEBUG_PRINT(Places, visitor(m_countries, "countries"),
visitor(m_mwmIds, "mwms"))
private:
std::vector<Country> m_countries;
- std::unordered_set<storage::TCountryId> m_mwmIds;
+ std::unordered_set<storage::CountryId> m_mwmIds;
};
struct SupportedPlaces