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-05-12 10:20:09 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-05-25 15:28:18 +0300
commitc21d5a7854ee6f4c270cb6242cba581cef07479f (patch)
treea3cdcc2a1be7158aed1b7dc12e92a5c4017f7049 /indexer/map_style_reader.hpp
parent3a00a30e65e65c9120b7ee076bd809f5ac800fee (diff)
Added Subpixel Morphological Antialiasing (SMAA)
Diffstat (limited to 'indexer/map_style_reader.hpp')
-rw-r--r--indexer/map_style_reader.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indexer/map_style_reader.hpp b/indexer/map_style_reader.hpp
index 63ff46a47a..5c488614d3 100644
--- a/indexer/map_style_reader.hpp
+++ b/indexer/map_style_reader.hpp
@@ -4,6 +4,8 @@
#include "map_style.hpp"
+#include <string>
+
class StyleReader
{
public:
@@ -14,7 +16,8 @@ public:
ReaderPtr<Reader> GetDrawingRulesReader();
- ReaderPtr<Reader> GetResourceReader(string const & file, string const & density);
+ ReaderPtr<Reader> GetResourceReader(std::string const & file, std::string const & density);
+ ReaderPtr<Reader> GetDefaultResourceReader(std::string const & file);
private:
MapStyle m_mapStyle;