File indexing completed on 2025-01-18 09:35:17
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
0012 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
0013
0014
0015 #include <boost/geometry/algorithms/detail/relate/implementation_gc.hpp>
0016 #include <boost/geometry/algorithms/detail/within/implementation.hpp>
0017
0018
0019 namespace boost { namespace geometry {
0020
0021
0022 #ifndef DOXYGEN_NO_DISPATCH
0023 namespace dispatch {
0024
0025 template <typename Geometry1, typename Geometry2>
0026 struct within<Geometry1, Geometry2, geometry_collection_tag, geometry_collection_tag>
0027 : detail::within::use_relate
0028 {};
0029
0030 template <typename Geometry1, typename Geometry2, typename Tag1>
0031 struct within<Geometry1, Geometry2, Tag1, geometry_collection_tag>
0032 : detail::within::use_relate
0033 {};
0034
0035 template <typename Geometry1, typename Geometry2, typename Tag2>
0036 struct within<Geometry1, Geometry2, geometry_collection_tag, Tag2>
0037 : detail::within::use_relate
0038 {};
0039
0040 }
0041 #endif
0042
0043
0044 }}
0045
0046 #endif