12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
- #include <boost/geometry/algorithms/detail/relate/implementation_gc.hpp>
- #include <boost/geometry/algorithms/detail/within/implementation.hpp>
- namespace boost { namespace geometry {
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch {
- template <typename Geometry1, typename Geometry2>
- struct within<Geometry1, Geometry2, geometry_collection_tag, geometry_collection_tag>
- : detail::within::use_relate
- {};
- template <typename Geometry1, typename Geometry2, typename Tag1>
- struct within<Geometry1, Geometry2, Tag1, geometry_collection_tag>
- : detail::within::use_relate
- {};
- template <typename Geometry1, typename Geometry2, typename Tag2>
- struct within<Geometry1, Geometry2, geometry_collection_tag, Tag2>
- : detail::within::use_relate
- {};
- }
- #endif
- }}
- #endif
|