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 'generator/osm2type.hpp')
-rw-r--r--generator/osm2type.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/generator/osm2type.hpp b/generator/osm2type.hpp
new file mode 100644
index 0000000000..6a2449c29d
--- /dev/null
+++ b/generator/osm2type.hpp
@@ -0,0 +1,20 @@
+#pragma once
+
+#include "../base/base.hpp"
+
+#include "../std/string.hpp"
+#include "../std/vector.hpp"
+
+#include "../base/start_mem_debug.hpp"
+
+struct XMLElement;
+
+namespace ftype
+{
+ void ParseOSMTypes(char const * fPath, int scale);
+
+ /// Get the types, name and layer fot feature with the tree of tags.
+ bool GetNameAndType(XMLElement * p, vector<uint32_t> & types, string & name, int32_t & layer);
+}
+
+#include "../base/stop_mem_debug.hpp"