line_interpolate.hpp 850 B

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