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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-26 12:01:20 +0300
committerConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-26 12:01:20 +0300
commit0966eaf4825731cff3ac580f0213896d6dbd0f9a (patch)
tree2e63026a2480811edfef670ee54250cf400135a9 /indexer/map_style_reader.hpp
parent7aa7c7d807bb36e1d04d04a41188d501ef018f2a (diff)
Ony Framework requires map style persistence
Diffstat (limited to 'indexer/map_style_reader.hpp')
-rw-r--r--indexer/map_style_reader.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indexer/map_style_reader.hpp b/indexer/map_style_reader.hpp
index 485558bb35..63ff46a47a 100644
--- a/indexer/map_style_reader.hpp
+++ b/indexer/map_style_reader.hpp
@@ -7,12 +7,17 @@
class StyleReader
{
public:
+ StyleReader();
+
void SetCurrentStyle(MapStyle mapStyle);
MapStyle GetCurrentStyle();
ReaderPtr<Reader> GetDrawingRulesReader();
ReaderPtr<Reader> GetResourceReader(string const & file, string const & density);
+
+private:
+ MapStyle m_mapStyle;
};
extern StyleReader & GetStyleReader();