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