mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 12:28:03 +00:00
22 lines
474 B
C++
22 lines
474 B
C++
#pragma once
|
|
|
|
// mapbox
|
|
#include <mapbox/geometry/line_string.hpp>
|
|
// stl
|
|
#include <vector>
|
|
|
|
namespace mapbox {
|
|
namespace geometry {
|
|
|
|
template <typename T, template <typename...> class Cont = std::vector>
|
|
struct multi_line_string : Cont<line_string<T>>
|
|
{
|
|
using coordinate_type = T;
|
|
using line_string_type = line_string<T>;
|
|
using container_type = Cont<line_string_type>;
|
|
using container_type::container_type;
|
|
};
|
|
|
|
} // namespace geometry
|
|
} // namespace mapbox
|