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:
Diffstat (limited to 'indexer/classificator_loader.hpp')
-rw-r--r--indexer/classificator_loader.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indexer/classificator_loader.hpp b/indexer/classificator_loader.hpp
index 412e8a1d29..933904fa77 100644
--- a/indexer/classificator_loader.hpp
+++ b/indexer/classificator_loader.hpp
@@ -1,8 +1,13 @@
#pragma once
+#include "../coding/reader.hpp"
+
#include "../std/string.hpp"
+
namespace classificator
{
- void Read(string const & rules, string const & classificator, string const & visibility);
+ typedef ReaderPtr<Reader> file_t;
+ void Read(file_t const & rules, file_t const & classificator, file_t const & visibility);
+ void ReadVisibility(string const & fPath);
}