]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/strategies/azimuth/services.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / geometry / strategies / azimuth / services.hpp
CommitLineData
1e59de90
TL
1// Boost.Geometry
2
3// Copyright (c) 2021, Oracle and/or its affiliates.
4
5// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
6
7// Licensed under the Boost Software License version 1.0.
8// http://www.boost.org/users/license.html
9
10#ifndef BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
11#define BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
12
13
14#include <boost/geometry/core/cs.hpp>
15#include <boost/geometry/core/static_assert.hpp>
16
17
18namespace boost { namespace geometry
19{
20
21
22namespace strategies { namespace azimuth {
23
24namespace services
25{
26
27template
28<
29 typename Point1, typename Point2,
30 typename CSTag1 = typename geometry::cs_tag<Point1>::type,
31 typename CSTag2 = typename geometry::cs_tag<Point2>::type
32>
33struct default_strategy
34{
35 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
36 "Not implemented for these Points' coordinate systems.",
37 Point1, Point2, CSTag1, CSTag2);
38};
39
40template <typename Strategy>
41struct strategy_converter
42{
43 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
44 "Not implemented for this Strategy.",
45 Strategy);
46};
47
48
49} // namespace services
50
51}} // namespace strategies::azimuth
52
53
54}} // namespace boost::geometry
55
56#endif // BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP