Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:35:17

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2022 Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0006 
0007 // Use, modification and distribution is subject to the Boost Software License,
0008 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0009 // http://www.boost.org/LICENSE_1_0.txt)
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 } // namespace dispatch
0041 #endif // DOXYGEN_NO_DISPATCH
0042 
0043 
0044 }} // namespace boost::geometry
0045 
0046 #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_WITHIN_IMPLEMENTATION_GC_HPP