// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2013, 2014, 2015, 2017. // Modifications copyright (c) 2013-2017 Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template struct relate : detail::relate::point_point {}; template struct relate : detail::relate::point_multipoint {}; template struct relate : detail::relate::multipoint_point {}; template struct relate : detail::relate::multipoint_multipoint {}; // TODO - for now commented out because before implementing it we must consider: // 1. how the Box degenerated to a Point should be treated // 2. what should be the definition of a Box degenerated to a Point // 3. what fields should the matrix/mask contain for dimension > 2 and dimension > 9 // //template //struct relate // : detail::relate::point_box //{}; // //template //struct relate // : detail::relate::box_point //{}; template struct relate : detail::relate::point_geometry {}; template struct relate : detail::relate::geometry_point {}; template struct relate : detail::relate::multi_point_geometry {}; template struct relate : detail::relate::geometry_multi_point {}; template struct relate : detail::relate::linear_linear {}; template struct relate : detail::relate::linear_areal {}; template struct relate : detail::relate::areal_linear {}; template struct relate : detail::relate::areal_areal {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP