azimuth.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2016-2021 Oracle and/or its affiliates.
  3. // Contributed and/or modified by Vissarion Fisikopoulos, on behalf of Oracle
  4. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  5. // Use, modification and distribution is subject to the Boost Software License,
  6. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP
  9. #define BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP
  10. #include <boost/geometry/core/static_assert.hpp>
  11. namespace boost { namespace geometry
  12. {
  13. namespace strategy { namespace azimuth { namespace services
  14. {
  15. /*!
  16. \brief Traits class binding a default azimuth strategy to a coordinate system
  17. \ingroup util
  18. \tparam CSTag tag of coordinate system
  19. \tparam CalculationType \tparam_calculation
  20. */
  21. template <typename CSTag>
  22. struct default_strategy
  23. {
  24. BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
  25. "Not implemented for this type.",
  26. CSTag);
  27. };
  28. }}} // namespace strategy::azimuth::services
  29. }} // namespace boost::geometry
  30. #endif // BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP