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:
authorvng <viktor.govako@gmail.com>2012-02-15 22:52:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:34:08 +0300
commit53bcf037e7d850eb77c1bc7dfd964b31a5d43557 (patch)
treeb30d8a7015e351e20da4f17a2bfdb4ae767336b4 /indexer/feature_loader_base.hpp
parentfd4d12b7c3bea550e964f93da08160f42304e66b (diff)
[search] Do index only for visibly types in MWM. Closed #626.
Diffstat (limited to 'indexer/feature_loader_base.hpp')
-rw-r--r--indexer/feature_loader_base.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indexer/feature_loader_base.hpp b/indexer/feature_loader_base.hpp
index 962e8d71be..55fccbd396 100644
--- a/indexer/feature_loader_base.hpp
+++ b/indexer/feature_loader_base.hpp
@@ -41,6 +41,7 @@ namespace feature
inline int GetScalesCount() const { return static_cast<int>(m_header.GetScalesCount()); }
inline int GetScale(int i) const { return m_header.GetScale(i); }
inline int GetLastScale() const { return m_header.GetLastScale(); }
+ inline pair<int, int> GetScaleRange() const { return m_header.GetScaleRange(); }
};
class LoaderBase