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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2017-12-20 16:41:44 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-12-20 17:48:02 +0300
commite1989a445eb7dce290d4bd9e968578327f709cbb (patch)
treed8ac5c53db08a31b1ddd702d0d6f16f61868c115 /storage
parent5f5bafe1a89145576b0e451e39247fd537bce290 (diff)
Review fixes.
Diffstat (limited to 'storage')
-rw-r--r--storage/country_info_getter.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/country_info_getter.hpp b/storage/country_info_getter.hpp
index b3584d5086..3e026b3287 100644
--- a/storage/country_info_getter.hpp
+++ b/storage/country_info_getter.hpp
@@ -130,13 +130,13 @@ protected:
class CountryInfoReader : public CountryInfoGetter
{
public:
- /// \brief The newer version. Use this one after the migration to single-component
- /// mwm files has been carried out.
+ /// \returns CountryInfoGetter based on countries.txt and packed_polygons.bin.
static unique_ptr<CountryInfoGetter> CreateCountryInfoReader(Platform const & platform);
- /// \brief The older version. The polygons are read from a file that was
- /// used at the time when routing and map data were in different files.
- /// \note This method should be used for test on migration.
+ /// \returns CountryInfoGetter based on countries_obsolete.txt and packed_polygons_obsolete.bin.
+ /// \brief The polygons in CountryInfoGetter() returned by the method was used at the time when
+ /// routing and map data were in different files.
+ /// \note This method should be used before migration to single-component and for tests.
static unique_ptr<CountryInfoGetter> CreateCountryInfoReaderObsolete(Platform const & platform);
protected: