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:
authorYuri Gorshenin <y@maps.me>2016-10-06 22:25:34 +0300
committerYuri Gorshenin <y@maps.me>2016-10-11 17:58:27 +0300
commitda69d602c568846235657a843b30c17a672320e1 (patch)
treeab172257367d683031241c75e6f95aeb3813e7f4 /search/search_params.hpp
parent09566c5ca7aa761a40b0e769e4e44b85c5c3f429 (diff)
[search] Implemented hotels filter.
Diffstat (limited to 'search/search_params.hpp')
-rw-r--r--search/search_params.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/search/search_params.hpp b/search/search_params.hpp
index e454d017de..5d21d9b3ec 100644
--- a/search/search_params.hpp
+++ b/search/search_params.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include "search/hotels_filter.hpp"
#include "search/mode.hpp"
#include "geometry/latlon.hpp"
@@ -41,6 +42,8 @@ public:
bool m_forceSearch = false;
bool m_suggestsEnabled = true;
+ shared_ptr<hotels_filter::Rule> m_hotelsFilter;
+
friend string DebugPrint(SearchParams const & params);
private: