Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search_index_builder.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e22a9e35af748b2de974dd52f8e5858eedefdf23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "std/string.hpp"

class FilesContainerR;
class Writer;

namespace indexer
{
bool BuildSearchIndexFromDatFile(string const & fName, bool forceRebuild = false);

bool AddCompresedSearchIndexSection(string const & fName, bool forceRebuild);

void BuildCompressedSearchIndex(FilesContainerR & container, Writer & indexWriter);

void BuildCompressedSearchIndex(string const & fName, Writer & indexWriter);
}  // namespace indexer