implementation.hpp 1022 B

1234567891011121314151617181920212223
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2014-2021, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  4. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  5. // Licensed under the Boost Software License version 1.0.
  6. // http://www.boost.org/users/license.html
  7. #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_SIMPLE_IMPLEMENTATION_HPP
  8. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_SIMPLE_IMPLEMENTATION_HPP
  9. #include <boost/geometry/algorithms/detail/is_simple/always_simple.hpp>
  10. #include <boost/geometry/algorithms/detail/is_simple/areal.hpp>
  11. #include <boost/geometry/algorithms/detail/is_simple/linear.hpp>
  12. #include <boost/geometry/algorithms/detail/is_simple/multipoint.hpp>
  13. #include <boost/geometry/strategies/relate/cartesian.hpp>
  14. #include <boost/geometry/strategies/relate/geographic.hpp>
  15. #include <boost/geometry/strategies/relate/spherical.hpp>
  16. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_SIMPLE_IMPLEMENTATION_HPP