azimuth.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2016-2017 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_CARTESIAN_AZIMUTH_HPP
  9. #define BOOST_GEOMETRY_STRATEGIES_CARTESIAN_AZIMUTH_HPP
  10. #include <boost/geometry/core/tags.hpp>
  11. namespace boost { namespace geometry
  12. {
  13. namespace strategy { namespace azimuth
  14. {
  15. template
  16. <
  17. typename CalculationType = void
  18. >
  19. class cartesian
  20. {};
  21. #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS
  22. namespace services
  23. {
  24. template <typename CalculationType>
  25. struct default_strategy<cartesian_tag, CalculationType>
  26. {
  27. typedef strategy::azimuth::cartesian<CalculationType> type;
  28. };
  29. }
  30. #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS
  31. }} // namespace strategy::azimuth
  32. }} // namespace boost::geometry
  33. #endif // BOOST_GEOMETRY_STRATEGIES_CARTESIAN_AZIMUTH_HPP