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