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-06-30 15:02:54 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-07-01 09:46:40 +0300
commitcd6792e04d95b30d9f4669f59f08aa99794d4b11 (patch)
treecce644dfec69dc7be9b336ed1a921a6ad874a665 /indexer/ftypes_matcher.hpp
parent517c506328c3e2c5504178cd59a65ddfc320b9cd (diff)
Added displaying of hotel info if any hotel is selected
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 7f6dc48e30..16e80b813f 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -164,6 +164,15 @@ public:
static IsBookingChecker const & Instance();
};
+class IsHotelChecker : public BaseChecker
+{
+ IsHotelChecker();
+
+public:
+ static IsHotelChecker const & Instance();
+ static vector<string> const & GetHotelTags();
+};
+
/// 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 };