services.hpp 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Boost.Geometry
  2. // Copyright (c) 2020, 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_CONVEX_HULL_SERVICES_HPP
  7. #define BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_SERVICES_HPP
  8. #include <boost/geometry/core/cs.hpp>
  9. #include <boost/mpl/assert.hpp>
  10. namespace boost { namespace geometry
  11. {
  12. namespace strategies { namespace convex_hull {
  13. namespace services
  14. {
  15. template
  16. <
  17. typename Geometry,
  18. typename CSTag = typename geometry::cs_tag<Geometry>::type
  19. >
  20. struct default_strategy
  21. {
  22. BOOST_MPL_ASSERT_MSG
  23. (
  24. false, NOT_IMPLEMENTED_FOR_THIS_COORDINATE_SYSTEM
  25. , (types<Geometry, CSTag>)
  26. );
  27. };
  28. } // namespace services
  29. }} // namespace strategies::convex_hull
  30. }} // namespace boost::geometry
  31. #endif // BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_SERVICES_HPP