]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/geometry/strategies/densify.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / strategies / densify.hpp
1 // Boost.Geometry
2
3 // Copyright (c) 2017-2020, Oracle and/or its affiliates.
4 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
5
6 // Licensed under the Boost Software License version 1.0.
7 // http://www.boost.org/users/license.html
8
9 #ifndef BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
10 #define BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
11
12
13 #include <boost/geometry/core/static_assert.hpp>
14
15
16 namespace boost { namespace geometry
17 {
18
19 namespace strategy { namespace densify
20 {
21
22 namespace services
23 {
24
25 template <typename CSTag>
26 struct default_strategy
27 {
28 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
29 "Not implemented for this coordinate system.",
30 CSTag);
31 };
32
33 } // namespace services
34
35 }} // namespace strategy::densify
36
37 }} // namespace boost::geometry
38
39 #endif // BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP