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:
authorYury Melnichek <melnichek@gmail.com>2011-05-31 12:21:25 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:18:33 +0300
commitbc21cec99a0b03eefa0f2097d0a5116ee4e85faf (patch)
tree6d85f5d5c44872b1369c88f3e99626ad36f601cd /indexer/classificator.hpp
parent53051b62cdeee34ed919265b0cb8b2ca9042cd19 (diff)
Rename feature_t to FeatureGeoType.
Diffstat (limited to 'indexer/classificator.hpp')
-rw-r--r--indexer/classificator.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp
index eaa9ba8d1d..7204363d4d 100644
--- a/indexer/classificator.hpp
+++ b/indexer/classificator.hpp
@@ -80,12 +80,12 @@ public:
void ConcatChildNames(string & s) const;
- enum feature_t { fpoint = 0, fline, farea };
- void GetSuitable(int scale, feature_t ft, vector<drule::Key> & keys) const;
+ enum FeatureGeoType { FEATURE_TYPE_POINT = 0, FEATURE_TYPE_LINE, FEATURE_TYPE_AREA };
+ void GetSuitable(int scale, FeatureGeoType ft, vector<drule::Key> & keys) const;
bool IsDrawable(int scale) const;
bool IsDrawableAny() const;
- bool IsDrawableLike(feature_t ft) const;
+ bool IsDrawableLike(FeatureGeoType ft) const;
template <class ToDo>
void ForEachObject(ToDo toDo)