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:
authorvng <viktor.govako@gmail.com>2011-11-11 18:21:03 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:27:42 +0300
commitde5531f2f1d1695d15c5025c59ba58bf57b3848b (patch)
tree5dff1fd03d63a9c08f193adcfd2a519ee5db3eb7 /indexer/drawing_rule_def.hpp
parenteb74bed55d707ce1eb9ee0314acb8ae79b056d92 (diff)
Factor out some rules processing functions.
Diffstat (limited to 'indexer/drawing_rule_def.hpp')
-rw-r--r--indexer/drawing_rule_def.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indexer/drawing_rule_def.hpp b/indexer/drawing_rule_def.hpp
index b697f43406..385320e2f8 100644
--- a/indexer/drawing_rule_def.hpp
+++ b/indexer/drawing_rule_def.hpp
@@ -1,6 +1,8 @@
#pragma once
#include "../std/string.hpp"
+#include "../std/vector.hpp"
+
namespace drule
{
@@ -33,4 +35,7 @@ namespace drule
enum rule_geo_t { node = 1, way = 2 };
int const layer_base_priority = 2000;
+
+ void MakeUnique(vector<Key> & keys);
+ void SortByScaleTypeDepth(vector<Key> & keys);
}