]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/include/boost/geometry/strategies/intersection.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / geometry / include / boost / geometry / strategies / intersection.hpp
CommitLineData
7c673cae
FG
1// Boost.Geometry
2
3// Copyright (c) 2016, Oracle and/or its affiliates.
4// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
5
6// Use, modification and distribution is subject to the Boost Software License,
7// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9
10#ifndef BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP
11#define BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP
12
13
14#include <boost/geometry/strategies/tags.hpp>
15
16
17#include <boost/mpl/assert.hpp>
18
19
20namespace boost { namespace geometry
21{
22
23namespace strategy { namespace intersection
24{
25
26namespace services
27{
28
29/*!
30\brief Traits class binding a segments intersection strategy to a coordinate system
31\ingroup util
32\tparam CSTag tag of coordinate system of point-type
33\tparam Policy intersection policy
34\tparam CalculationType \tparam_calculation
35*/
36template <typename CSTag, typename Policy, typename CalculationType = void>
37struct default_strategy
38{
39 BOOST_MPL_ASSERT_MSG
40 (
41 false, NOT_IMPLEMENTED_FOR_THIS_TYPE
42 , (types<CSTag>)
43 );
44};
45
46} // namespace services
47
48}} // namespace strategy::intersection
49
50}} // namespace boost::geometry
51
52#endif // BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP