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