]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/algorithms/detail/envelope/point.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / geometry / algorithms / detail / envelope / point.hpp
CommitLineData
7c673cae
FG
1// Boost.Geometry (aka GGL, Generic Geometry Library)
2
3// Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
4// Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
5// Copyright (c) 2009-2015 Mateusz Loskot, London, UK.
6
92f5a8d4
TL
7// This file was modified by Oracle on 2015, 2016, 2017, 2018.
8// Modifications copyright (c) 2015-2018, Oracle and/or its affiliates.
7c673cae 9
b32b8144 10// Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
7c673cae 11// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
b32b8144 12// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
7c673cae
FG
13
14// Distributed under the Boost Software License, Version 1.0.
15// (See accompanying file LICENSE_1_0.txt or copy at
16// http://www.boost.org/LICENSE_1_0.txt)
17
18#ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_POINT_HPP
19#define BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_POINT_HPP
20
7c673cae
FG
21#include <boost/geometry/core/tags.hpp>
22
7c673cae
FG
23#include <boost/geometry/algorithms/dispatch/envelope.hpp>
24
92f5a8d4
TL
25// For backward compatibility
26#include <boost/geometry/strategies/cartesian/envelope_point.hpp>
27#include <boost/geometry/strategies/spherical/envelope_point.hpp>
28
7c673cae
FG
29
30namespace boost { namespace geometry
31{
32
33#ifndef DOXYGEN_NO_DETAIL
34namespace detail { namespace envelope
35{
36
37
92f5a8d4 38struct envelope_point
7c673cae 39{
b32b8144 40 template <typename Point, typename Box, typename Strategy>
92f5a8d4 41 static inline void apply(Point const& point, Box& mbr, Strategy const& )
7c673cae 42 {
92f5a8d4 43 Strategy::apply(point, mbr);
7c673cae
FG
44 }
45};
46
47
48}} // namespace detail::envelope
49#endif // DOXYGEN_NO_DETAIL
50
51#ifndef DOXYGEN_NO_DISPATCH
52namespace dispatch
53{
54
55
b32b8144 56template <typename Point>
92f5a8d4
TL
57struct envelope<Point, point_tag>
58 : detail::envelope::envelope_point
7c673cae
FG
59{};
60
61
62} // namespace dispatch
63#endif // DOXYGEN_NO_DISPATCH
64
65}} // namespace boost::geometry
66
67#endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_POINT_HPP