Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:36:44

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2020, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
0006 
0007 // Licensed under the Boost Software License version 1.0.
0008 // http://www.boost.org/users/license.html
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 = typename geometry::cs_tag<Geometry>::type
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 } // namespace services
0043 
0044 }} // namespace strategies::convex_hull
0045 
0046 
0047 }} // namespace boost::geometry
0048 
0049 #endif // BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_SERVICES_HPP