File indexing completed on 2025-10-31 08:41:01
0001 
0002 
0003 
0004 
0005 
0006 
0007 
0008 
0009 
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_SERVICES_HPP
0012 
0013 
0014 #include <boost/geometry/core/cs.hpp>
0015 
0016 #include <boost/mpl/assert.hpp>
0017 
0018 
0019 namespace boost { namespace geometry
0020 {
0021 
0022 
0023 namespace strategies { namespace convex_hull {
0024 
0025 namespace services
0026 {
0027 
0028 template
0029 <
0030     typename Geometry,
0031     typename CSTag = geometry::cs_tag_t<Geometry>
0032 >
0033 struct default_strategy
0034 {
0035     BOOST_MPL_ASSERT_MSG
0036     (
0037         false, NOT_IMPLEMENTED_FOR_THIS_COORDINATE_SYSTEM
0038         , (types<Geometry, CSTag>)
0039     );
0040 };
0041 
0042 } 
0043 
0044 }} 
0045 
0046 
0047 }} 
0048 
0049 #endif