File indexing completed on 2025-01-18 09:35:03
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
0022 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
0023
0024
0025 #include <boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>
0026 #include <boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>
0027 #include <boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>
0028 #include <boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>
0029 #include <boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>
0030 #include <boost/geometry/algorithms/detail/disjoint/point_point.hpp>
0031 #include <boost/geometry/algorithms/detail/disjoint/point_box.hpp>
0032 #include <boost/geometry/algorithms/detail/disjoint/box_box.hpp>
0033 #include <boost/geometry/algorithms/detail/disjoint/segment_box.hpp>
0034 #include <boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>
0035
0036 #include <boost/geometry/strategies/relate/cartesian.hpp>
0037 #include <boost/geometry/strategies/relate/geographic.hpp>
0038 #include <boost/geometry/strategies/relate/spherical.hpp>
0039
0040
0041 #endif