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>2016-01-14 16:14:46 +0300
committerConstantin Shalnev <c.shalnev@corp.mail.ru>2016-01-14 16:14:46 +0300
commitffa964b5a8ac2dc8de4a1b4987834767f47122e6 (patch)
treea93ebdb38ac680be2f538481fda8032d8d118de6 /indexer/classificator.hpp
parent6840cdb9dbf741f00d4580dd7c3570068e532f17 (diff)
Added multiple versions of classificators and rule holders
Diffstat (limited to 'indexer/classificator.hpp')
-rw-r--r--indexer/classificator.hpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp
index 4ec893c923..4d94df78ca 100644
--- a/indexer/classificator.hpp
+++ b/indexer/classificator.hpp
@@ -1,16 +1,17 @@
#pragma once
+
#include "indexer/drawing_rule_def.hpp"
-#include "indexer/types_mapping.hpp"
-#include "indexer/scales.hpp"
#include "indexer/feature_decl.hpp"
+#include "indexer/map_style.hpp"
+#include "indexer/scales.hpp"
+#include "indexer/types_mapping.hpp"
-#include "std/vector.hpp"
-#include "std/string.hpp"
-#include "std/iostream.hpp"
#include "std/bitset.hpp"
-#include "std/noncopyable.hpp"
#include "std/initializer_list.hpp"
-
+#include "std/iostream.hpp"
+#include "std/noncopyable.hpp"
+#include "std/string.hpp"
+#include "std/vector.hpp"
class ClassifObject;
@@ -222,4 +223,5 @@ public:
string GetReadableObjectName(uint32_t type) const;
};
+Classificator & classif(MapStyle mapStyle);
Classificator & classif();