// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2014 Oracle and/or its affiliates. // 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) // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle #ifndef BOOST_GEOMETRY_STRATEGY_AGNOSTIC_RELATE_HPP #define BOOST_GEOMETRY_STRATEGY_AGNOSTIC_RELATE_HPP #include namespace boost { namespace geometry { namespace strategy { namespace relate { template struct relate { template static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2) { return detail::relate::relate(geometry1, geometry2); } }; } // namespace relate namespace within { #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace services { template struct default_strategy { typedef strategy::relate::relate type; }; template struct default_strategy { typedef strategy::relate::relate type; }; } // namespace services #endif }} // namespace strategy::within #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace strategy { namespace covered_by { namespace services { template struct default_strategy { typedef strategy::relate::relate type; }; template struct default_strategy { typedef strategy::relate::relate type; }; }}} // namespace strategy::covered_by::services #endif }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGY_AGNOSTIC_RELATE_HPP