File indexing completed on 2025-09-18 08:44:50
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef BOOST_GEOMETRY_STRATEGIES_COVERED_BY_HPP
0019 #define BOOST_GEOMETRY_STRATEGIES_COVERED_BY_HPP
0020
0021
0022 #include <boost/geometry/core/cs.hpp>
0023 #include <boost/geometry/core/point_type.hpp>
0024 #include <boost/geometry/core/static_assert.hpp>
0025 #include <boost/geometry/core/tag.hpp>
0026 #include <boost/geometry/core/tags.hpp>
0027 #include <boost/geometry/core/tag_cast.hpp>
0028
0029
0030 namespace boost { namespace geometry
0031 {
0032
0033
0034 namespace strategy { namespace covered_by
0035 {
0036
0037
0038 namespace services
0039 {
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051 template
0052 <
0053 typename GeometryContained,
0054 typename GeometryContaining,
0055 typename TagContained = tag_t<GeometryContained>,
0056 typename TagContaining = tag_t<GeometryContaining>,
0057 typename CastedTagContained = tag_cast_t
0058 <
0059 tag_t<GeometryContained>,
0060 pointlike_tag, linear_tag, polygonal_tag, areal_tag
0061 >,
0062 typename CastedTagContaining = tag_cast_t
0063 <
0064 tag_t<GeometryContaining>,
0065 pointlike_tag, linear_tag, polygonal_tag, areal_tag
0066 >,
0067 typename CsTagContained = tag_cast_t
0068 <
0069 cs_tag_t<point_type_t<GeometryContained>>,
0070 spherical_tag
0071 >,
0072 typename CsTagContaining = tag_cast_t
0073 <
0074 cs_tag_t<point_type_t<GeometryContaining>>,
0075 spherical_tag
0076 >
0077 >
0078 struct default_strategy
0079 {
0080 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0081 "Not implemented for these types.",
0082 GeometryContained, GeometryContaining);
0083 };
0084
0085
0086 }
0087
0088
0089 }}
0090
0091
0092 }}
0093
0094
0095 #endif
0096