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/features_vector.hpp
parentfd4d12b7c3bea550e964f93da08160f42304e66b (diff)
[search] Do index only for visibly types in MWM. Closed #626.
Diffstat (limited to 'indexer/features_vector.hpp')
-rw-r--r--indexer/features_vector.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indexer/features_vector.hpp b/indexer/features_vector.hpp
index 59f7edf1c1..92766a1e8a 100644
--- a/indexer/features_vector.hpp
+++ b/indexer/features_vector.hpp
@@ -28,7 +28,11 @@ public:
m_RecordReader.ForEachRecord(DoGetFeatures<ToDo>(m_LoadInfo, toDo));
}
- serial::CodingParams const & GetCodingParams() const { return m_LoadInfo.GetDefCodingParams(); }
+ inline serial::CodingParams const & GetCodingParams() const
+ {
+ return m_LoadInfo.GetDefCodingParams();
+ }
+ inline pair<int, int> GetScaleRange() const { return m_LoadInfo.GetScaleRange(); }
private:
template <class ToDo> class DoGetFeatures