]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/geometry/strategies/relate/services.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / geometry / strategies / relate / services.hpp
1 // Boost.Geometry
2
3 // Copyright (c) 2020, 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_RELATE_SERVICES_HPP
11 #define BOOST_GEOMETRY_STRATEGIES_RELATE_SERVICES_HPP
12
13
14 #include <boost/geometry/core/cs.hpp>
15 #include <boost/geometry/core/static_assert.hpp>
16
17
18 namespace boost { namespace geometry
19 {
20
21
22 namespace strategies { namespace relate {
23
24 namespace services
25 {
26
27 template
28 <
29 typename Geometry1,
30 typename Geometry2,
31 typename CSTag1 = typename geometry::cs_tag<Geometry1>::type,
32 typename CSTag2 = typename geometry::cs_tag<Geometry2>::type
33 >
34 struct default_strategy
35 {
36 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
37 "Not implemented for this Geometry's coordinate system.",
38 Geometry1, Geometry2, CSTag1, CSTag2);
39 };
40
41 template <typename Strategy>
42 struct strategy_converter
43 {
44 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
45 "Not implemented for this Strategy.",
46 Strategy);
47 };
48
49
50 } // namespace services
51
52 }} // namespace strategies::relate
53
54
55 }} // namespace boost::geometry
56
57 #endif // BOOST_GEOMETRY_STRATEGIES_RELATE_SERVICES_HPP