1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
- #include <boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/point_point.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/point_box.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/box_box.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/segment_box.hpp>
- #include <boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>
- #include <boost/geometry/strategies/relate/cartesian.hpp>
- #include <boost/geometry/strategies/relate/geographic.hpp>
- #include <boost/geometry/strategies/relate/spherical.hpp>
- #endif
|