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

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

#include <string>

namespace classificator
{
void Load();

// This method loads only classificator and types. It does not load and apply
// style rules. It can be used only in separate modules (like pybindings) to
// operate with number-string representations of types.
void LoadTypes(std::string const & classificatorFileStr,
               std::string const & typesFileStr);
}  // namespace classificator