Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2018-2020, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
0006 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0007 
0008 // Licensed under the Boost Software License version 1.0.
0009 // http://www.boost.org/users/license.html
0010 
0011 #ifndef BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP
0012 #define BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP
0013 
0014 
0015 #include <boost/geometry/core/static_assert.hpp>
0016 
0017 
0018 namespace boost { namespace geometry
0019 {
0020 
0021 namespace strategy { namespace line_interpolate
0022 {
0023 
0024 namespace services
0025 {
0026 
0027 template <typename CSTag>
0028 struct default_strategy
0029 {
0030     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0031         "Not implemented for this coordinate system.",
0032         CSTag);
0033 };
0034 
0035 } // namespace services
0036 
0037 }} // namespace strategy::line_interpolate
0038 
0039 }} // namespace boost::geometry
0040 
0041 #endif // BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP