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:
authorIlya Zverev <zverik@textual.ru>2017-01-27 18:35:24 +0300
committerIlya Zverev <zverik@textual.ru>2017-01-27 19:15:51 +0300
commit135290d877bb4f6418ab6c9d89750af0be20c62f (patch)
tree8538064b41785a72920099f3e8ca352baa102c4e /indexer/ftypes_matcher.hpp
parentb7b98f376f8c11cf9ccc486b0b199d4258e6ee1b (diff)
[search] Special treatment for internet_access and wheelchair types
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index c3d6e02d5d..760d391120 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -192,6 +192,15 @@ public:
static IsOpentableChecker const & Instance();
};
+// Checks for types that are not drawable, but searchable.
+class IsInvisibleIndexedChecker : public BaseChecker
+{
+ IsInvisibleIndexedChecker();
+
+public:
+ static IsInvisibleIndexedChecker const & Instance();
+};
+
/// Type of locality (do not change values and order - they have detalization order)
/// COUNTRY < STATE < CITY < ...
enum Type { NONE = -1, COUNTRY = 0, STATE, CITY, TOWN, VILLAGE, LOCALITY_COUNT };