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