This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/indexer/classificator_loader.hpp
2018-05-17 19:30:13 +03:00

14 lines
421 B
C++

#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