File indexing completed on 2025-01-18 09:36:47
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_IS_CONVEX_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_IS_CONVEX_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 is_convex {
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 template <typename Strategy>
0043 struct strategy_converter
0044 {
0045 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0046 "Not implemented for this Strategy.",
0047 Strategy);
0048 };
0049
0050 }
0051
0052 }}
0053
0054
0055 }}
0056
0057 #endif