summaryrefslogtreecommitdiffstats
path: root/include/mapbox/geometry/multi_point.hpp
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-30 13:23:46 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-30 13:23:46 +0900
commit9d57e5b16843759ca97d3cdc6f0310cf4527810a (patch)
tree7679864f22aa516de5af3f8b31a72bb4bbe85d71 /include/mapbox/geometry/multi_point.hpp
parent819d06ad9d8c50ea1e0af26450ee79d2492fea9f (diff)
add aw navigation
Diffstat (limited to 'include/mapbox/geometry/multi_point.hpp')
-rw-r--r--include/mapbox/geometry/multi_point.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/mapbox/geometry/multi_point.hpp b/include/mapbox/geometry/multi_point.hpp
deleted file mode 100644
index a3c73cf..0000000
--- a/include/mapbox/geometry/multi_point.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-// mapbox
-#include <mapbox/geometry/point.hpp>
-// stl
-#include <vector>
-
-namespace mapbox {
-namespace geometry {
-
-template <typename T, template <typename...> class Cont = std::vector>
-struct multi_point : Cont<point<T>>
-{
- using coordinate_type = T;
- using point_type = point<T>;
- using container_type = Cont<point_type>;
- using container_type::container_type;
-};
-
-} // namespace geometry
-} // namespace mapbox