1 // Boost.Geometry 2 3 // Copyright (c) 2018, Oracle and/or its affiliates. 4 5 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle 6 7 // Licensed under the Boost Software License version 1.0. 8 // http://www.boost.org/users/license.html 9 10 #ifndef BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP 11 #define BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP 12 13 14 #include <boost/mpl/assert.hpp> 15 16 17 namespace boost { namespace geometry 18 { 19 20 namespace strategy { namespace line_interpolate 21 { 22 23 namespace services 24 { 25 26 template <typename CSTag> 27 struct default_strategy 28 { 29 BOOST_MPL_ASSERT_MSG 30 ( 31 false, NOT_IMPLEMENTED_FOR_THIS_CS 32 , (types<CSTag>) 33 ); 34 }; 35 36 } // namespace services 37 38 }} // namespace strategy::line_interpolate 39 40 }} // namespace boost::geometry 41 42 #endif // BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP 43