// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // This file was modified by Oracle on 2017. // Modifications copyright (c) 2017, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // 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_STRATEGIES_COVERED_BY_HPP #define BOOST_GEOMETRY_STRATEGIES_COVERED_BY_HPP #include #include #include #include #include #include namespace boost { namespace geometry { namespace strategy { namespace covered_by { namespace services { /*! \brief Traits class binding a covered_by determination strategy to a coordinate system \ingroup covered_by \tparam GeometryContained geometry-type of input (possibly) contained type \tparam GeometryContaining geometry-type of input (possibly) containing type \tparam TagContained casted tag of (possibly) contained type \tparam TagContaining casted tag of (possibly) containing type \tparam CsTagContained tag of coordinate system of (possibly) contained type \tparam CsTagContaining tag of coordinate system of (possibly) containing type */ template < typename GeometryContained, typename GeometryContaining, typename TagContained = typename tag::type, typename TagContaining = typename tag::type, typename CastedTagContained = typename tag_cast < typename tag::type, pointlike_tag, linear_tag, polygonal_tag, areal_tag >::type, typename CastedTagContaining = typename tag_cast < typename tag::type, pointlike_tag, linear_tag, polygonal_tag, areal_tag >::type, typename CsTagContained = typename tag_cast < typename cs_tag::type>::type, spherical_tag >::type, typename CsTagContaining = typename tag_cast < typename cs_tag::type>::type, spherical_tag >::type > struct default_strategy { BOOST_MPL_ASSERT_MSG ( false, NOT_IMPLEMENTED_FOR_THESE_TYPES , (types) ); }; } // namespace services }} // namespace strategy::covered_by }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_COVERED_BY_HPP