implementation_gc.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Boost.Geometry
  2. // Copyright (c) 2022 Oracle and/or its affiliates.
  3. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  4. // Use, modification and distribution is subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
  8. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP
  9. #include <boost/geometry/algorithms/detail/relate/implementation_gc.hpp>
  10. #include <boost/geometry/algorithms/detail/within/implementation.hpp>
  11. namespace boost { namespace geometry {
  12. #ifndef DOXYGEN_NO_DISPATCH
  13. namespace dispatch {
  14. template <typename Geometry1, typename Geometry2>
  15. struct within<Geometry1, Geometry2, geometry_collection_tag, geometry_collection_tag>
  16. : detail::within::use_relate
  17. {};
  18. template <typename Geometry1, typename Geometry2, typename Tag1>
  19. struct within<Geometry1, Geometry2, Tag1, geometry_collection_tag>
  20. : detail::within::use_relate
  21. {};
  22. template <typename Geometry1, typename Geometry2, typename Tag2>
  23. struct within<Geometry1, Geometry2, geometry_collection_tag, Tag2>
  24. : detail::within::use_relate
  25. {};
  26. } // namespace dispatch
  27. #endif // DOXYGEN_NO_DISPATCH
  28. }} // namespace boost::geometry
  29. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP