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
path: root/std
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2010-12-26 15:53:05 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:08:50 +0300
commit1c699a5a4009906f8a712261c5108431655f9f53 (patch)
treed632f9eb3838a4ab8e47fd1e003cf9769040ce2f /std
parent4223de90999ac069efbef4739e5865318710c706 (diff)
Add kdtree++ and tree4d as 4-dimensional tree by object's limit rect.
Diffstat (limited to 'std')
-rw-r--r--std/kdtree.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/std/kdtree.hpp b/std/kdtree.hpp
new file mode 100644
index 0000000000..9d95c4199f
--- /dev/null
+++ b/std/kdtree.hpp
@@ -0,0 +1,12 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include "../3party/kdtree++/kdtree.hpp"
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif