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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-06-29 14:57:21 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2017-06-30 16:18:55 +0300
commit91f2d144825639a99c9338bc86fc0c0c72d97dfd (patch)
treeb36dc34925d86e364aa67fbd4c5bc20904009642 /indexer/map_style_reader.hpp
parent2b99ccc9534100a016bbe698ca704237cb79a3ac (diff)
Moved speed cameras to own layer
Diffstat (limited to 'indexer/map_style_reader.hpp')
-rw-r--r--indexer/map_style_reader.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/indexer/map_style_reader.hpp b/indexer/map_style_reader.hpp
index 5c488614d3..498f370d1e 100644
--- a/indexer/map_style_reader.hpp
+++ b/indexer/map_style_reader.hpp
@@ -12,12 +12,13 @@ public:
StyleReader();
void SetCurrentStyle(MapStyle mapStyle);
- MapStyle GetCurrentStyle();
+ MapStyle GetCurrentStyle() const;
+ bool IsCarNavigationStyle() const;
- ReaderPtr<Reader> GetDrawingRulesReader();
+ ReaderPtr<Reader> GetDrawingRulesReader() const;
- ReaderPtr<Reader> GetResourceReader(std::string const & file, std::string const & density);
- ReaderPtr<Reader> GetDefaultResourceReader(std::string const & file);
+ ReaderPtr<Reader> GetResourceReader(std::string const & file, std::string const & density) const;
+ ReaderPtr<Reader> GetDefaultResourceReader(std::string const & file) const;
private:
MapStyle m_mapStyle;