File indexing completed on 2025-01-18 09:36:47
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_RELATE_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_RELATE_SERVICES_HPP
0012
0013
0014 #include <boost/geometry/core/cs.hpp>
0015 #include <boost/geometry/core/static_assert.hpp>
0016
0017
0018 namespace boost { namespace geometry
0019 {
0020
0021
0022 namespace strategies { namespace relate {
0023
0024 namespace services
0025 {
0026
0027 template
0028 <
0029 typename Geometry1,
0030 typename Geometry2,
0031 typename CSTag1 = typename geometry::cs_tag<Geometry1>::type,
0032 typename CSTag2 = typename geometry::cs_tag<Geometry2>::type
0033 >
0034 struct default_strategy
0035 {
0036 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0037 "Not implemented for this Geometry's coordinate system.",
0038 Geometry1, Geometry2, CSTag1, CSTag2);
0039 };
0040
0041 template <typename Strategy>
0042 struct strategy_converter
0043 {
0044 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0045 "Not implemented for this Strategy.",
0046 Strategy);
0047 };
0048
0049
0050 }
0051
0052 }}
0053
0054
0055 }}
0056
0057 #endif