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:
authorvng <viktor.govako@gmail.com>2015-12-08 13:56:57 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:01 +0300
commit834f8be3f8fafc6f05d7bfe5661a49572291b417 (patch)
treee39f7a65d92f3f6fa215b90bd959e8e8e6433fd0 /indexer/search_index_builder.hpp
parent1f6bb2ee6740c14d85e40ec6dcb95ba0b4eb824c (diff)
[search] Moved search components to the search library. Moved search index builder to the generator.
Diffstat (limited to 'indexer/search_index_builder.hpp')
-rw-r--r--indexer/search_index_builder.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/indexer/search_index_builder.hpp b/indexer/search_index_builder.hpp
deleted file mode 100644
index ce647d0653..0000000000
--- a/indexer/search_index_builder.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include "std/string.hpp"
-
-class FilesContainerR;
-class Writer;
-
-namespace indexer
-{
-// Builds the latest version of the search index section and writes it to the mwm file.
-// An attempt to rewrite the search index of an old mwm may result in a future crash
-// when using search because this function does not update mwm's version. This results
-// in version mismatch when trying to read the index.
-bool BuildSearchIndexFromDataFile(string const & filename, bool forceRebuild = false);
-
-void BuildSearchIndex(FilesContainerR & container, Writer & indexWriter);
-} // namespace indexer