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-01-07 12:09:36 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:27 +0300
commitde3caa14e222b24eff52e7406e9550181c58d4e1 (patch)
tree8dd4ea3b0a8a8ee123ec08adc8c0175bf00d4153 /indexer/ftypes_matcher.hpp
parent0fb04ab3e369a91742788c1e167376250370edae (diff)
[search] Implementation of a fast calculation of STREET type via search index.
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index 551a2a3d52..cb5f3c30d5 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -2,8 +2,8 @@
#include "base/base.hpp"
-#include "std/vector.hpp"
#include "std/string.hpp"
+#include "std/vector.hpp"
namespace feature { class TypesHolder; }
class FeatureType;
@@ -73,6 +73,8 @@ public:
class IsStreetChecker : public BaseChecker
{
public:
+ static vector<vector<string>> const kPaths;
+
IsStreetChecker();
static IsStreetChecker const & Instance();