forked from organicmaps/organicmaps
[search] Add FeatureTypeToString().
This commit is contained in:
parent
6809f67d42
commit
8f46ba9a1b
3 changed files with 10 additions and 0 deletions
|
@ -38,6 +38,7 @@ SOURCES += \
|
|||
mwm_set.cpp \
|
||||
index.cpp \
|
||||
categories_holder.cpp \
|
||||
search_string_utils.cpp
|
||||
|
||||
HEADERS += \
|
||||
feature.hpp \
|
||||
|
|
7
indexer/search_string_utils.cpp
Normal file
7
indexer/search_string_utils.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include "search_string_utils.hpp"
|
||||
|
||||
strings::UniString search::FeatureTypeToString(uint32_t type)
|
||||
{
|
||||
string s = "!type:" + strings::to_string(type);
|
||||
return strings::UniString(s.begin(), s.end());
|
||||
}
|
|
@ -21,4 +21,6 @@ void SplitUniString(strings::UniString const & uniS, F f, DelimsT const & delims
|
|||
f(iter.GetUniString());
|
||||
}
|
||||
|
||||
strings::UniString FeatureTypeToString(uint32_t type);
|
||||
|
||||
} // namespace search
|
||||
|
|
Loading…
Add table
Reference in a new issue