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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-05-13 18:16:14 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-05-17 16:16:19 +0300
commit63543601660861bdd6a729454f1ae02a88885c1e (patch)
tree878975e8d9612b3283f991f91f28c06881aa2256 /indexer/ftypes_matcher.hpp
parente4443bec67bf88e9a577fba78d839c6feb78b36d (diff)
Added displacement modes
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index d2a11b24b2..0b10e026b7 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -157,6 +157,13 @@ public:
static IsTunnelChecker const & Instance();
};
+class IsBookingChecker : public BaseChecker
+{
+ IsBookingChecker();
+public:
+ static IsBookingChecker 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 };