#pragma once // mapbox #include // stl #include namespace mapbox { namespace geometry { template class Cont = std::vector> struct line_string : Cont > { using coordinate_type = T; using point_type = point; using container_type = Cont; using container_type::container_type; }; } // namespace geometry } // namespace mapbox