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 'map/feature_styler.hpp')
-rw-r--r--map/feature_styler.hpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/map/feature_styler.hpp b/map/feature_styler.hpp
new file mode 100644
index 0000000000..ff9eb27336
--- /dev/null
+++ b/map/feature_styler.hpp
@@ -0,0 +1,44 @@
+#pragma once
+
+#include "../std/vector.hpp"
+#include "../indexer/drawing_rules.hpp"
+#include "drawer.hpp"
+#include "../indexer/feature.hpp"
+#include "../indexer/feature_visibility.hpp"
+
+namespace feature
+{
+ class StylesContainer
+ {
+
+ //buffer_vector<di::DrawRule, 16> rules;
+
+
+ public:
+ StylesContainer();
+ ~StylesContainer();
+
+ typedef buffer_vector<di::DrawRule, 16> StylesContainerT;
+ StylesContainerT m_rules;
+ bool m_isCoastline;
+ bool m_hasLineStyles;
+ bool m_hasPathText;
+ int m_geometryType;
+ size_t m_count;
+
+ string m_primaryText;
+ string m_secondaryText;
+ string m_refText;
+
+ double m_popRank;
+ double m_priorityModifier;
+
+ void GetStyles(FeatureType const & f, int const zoom);
+ bool empty()
+ {
+ return m_rules.empty();
+ }
+
+// void Assign(buffer_vector<di::DrawRule, 16> & rules);
+ };
+}