Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:36:44

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2021, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
0006 
0007 // Licensed under the Boost Software License version 1.0.
0008 // http://www.boost.org/users/license.html
0009 
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SERVICES_HPP
0012 
0013 
0014 #include <boost/geometry/core/cs.hpp>
0015 #include <boost/geometry/core/static_assert.hpp>
0016 
0017 #include <boost/geometry/strategies/detail.hpp>
0018 
0019 namespace boost { namespace geometry
0020 {
0021 
0022 namespace strategies { namespace closest_points
0023 {
0024 
0025 namespace services
0026 {
0027 
0028 template
0029 <
0030     typename Geometry1,
0031     typename Geometry2,
0032     typename CSTag1 = typename geometry::cs_tag<Geometry1>::type,
0033     typename CSTag2 = typename geometry::cs_tag<Geometry2>::type
0034 >
0035 struct default_strategy
0036 {
0037     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0038         "Not implemented for these Geometries' coordinate systems.",
0039         Geometry1, Geometry2, CSTag1, CSTag2);
0040 };
0041 
0042 } // namespace services
0043 
0044 }} // namespace strategies::closest_points
0045 
0046 }} // namespace boost::geometry
0047 
0048 #endif // BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SERVICES_HPP