densify.hpp 808 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Boost.Geometry
  2. // Copyright (c) 2017-2020, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Adam Wulkiewicz, 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_DENSIFY_HPP
  7. #define BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
  8. #include <boost/geometry/core/static_assert.hpp>
  9. namespace boost { namespace geometry
  10. {
  11. namespace strategy { namespace densify
  12. {
  13. namespace services
  14. {
  15. template <typename CSTag>
  16. struct default_strategy
  17. {
  18. BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
  19. "Not implemented for this coordinate system.",
  20. CSTag);
  21. };
  22. } // namespace services
  23. }} // namespace strategy::densify
  24. }} // namespace boost::geometry
  25. #endif // BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP