line_interpolate.hpp 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Boost.Geometry
  2. // Copyright (c) 2018-2020, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
  4. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  5. // Licensed under the Boost Software License version 1.0.
  6. // http://www.boost.org/users/license.html
  7. #ifndef BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP
  8. #define BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP
  9. #include <boost/geometry/core/static_assert.hpp>
  10. namespace boost { namespace geometry
  11. {
  12. namespace strategy { namespace line_interpolate
  13. {
  14. namespace services
  15. {
  16. template <typename CSTag>
  17. struct default_strategy
  18. {
  19. BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
  20. "Not implemented for this coordinate system.",
  21. CSTag);
  22. };
  23. } // namespace services
  24. }} // namespace strategy::line_interpolate
  25. }} // namespace boost::geometry
  26. #endif // BOOST_GEOMETRY_STRATEGIES_LINE_INTERPOLATE_HPP