From b5c87084afaef42b2d058f68091be31988a6a874 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:08:07 +0900 Subject: Imported Upstream version 1.64.0 Change-Id: Id9212edd016dd55f21172c427aa7894d1d24148b Signed-off-by: DongHun Kwak --- boost/geometry/strategies/agnostic/relate.hpp | 122 -------------------------- 1 file changed, 122 deletions(-) delete mode 100644 boost/geometry/strategies/agnostic/relate.hpp (limited to 'boost/geometry/strategies/agnostic/relate.hpp') diff --git a/boost/geometry/strategies/agnostic/relate.hpp b/boost/geometry/strategies/agnostic/relate.hpp deleted file mode 100644 index 676207694f..0000000000 --- a/boost/geometry/strategies/agnostic/relate.hpp +++ /dev/null @@ -1,122 +0,0 @@ -// Boost.Geometry (aka GGL, Generic Geometry Library) - -// Copyright (c) 2014-2015 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_STRATEGY_AGNOSTIC_RELATE_HPP -#define BOOST_GEOMETRY_STRATEGY_AGNOSTIC_RELATE_HPP - -#include - - -namespace boost { namespace geometry -{ - -namespace strategy { namespace relate -{ - -template -struct relate -{ - static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2) - { - return geometry::relate(geometry1, geometry2, StaticMask()); - } -}; - -} // namespace relate - -namespace within -{ - -#ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS - -namespace services -{ - - -template -struct default_strategy -{ - typedef strategy::relate::relate - < - Geometry1, - Geometry2, - typename detail::de9im::static_mask_within_type - < - Geometry1, Geometry2 - >::type - > type; -}; - -template -struct default_strategy -{ - typedef strategy::relate::relate - < - Geometry1, - Geometry2, - typename detail::de9im::static_mask_within_type - < - Geometry1, Geometry2 - >::type - > 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 - < - Geometry1, - Geometry2, - typename detail::de9im::static_mask_covered_by_type - < - Geometry1, Geometry2 - >::type - > type; -}; - -template -struct default_strategy -{ - typedef strategy::relate::relate - < - Geometry1, - Geometry2, - typename detail::de9im::static_mask_covered_by_type - < - Geometry1, Geometry2 - >::type - > type; -}; - - -}}} // namespace strategy::covered_by::services -#endif - - -}} // namespace boost::geometry - - -#endif // BOOST_GEOMETRY_STRATEGY_AGNOSTIC_RELATE_HPP -- cgit v1.2.3