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