implementation.hpp 1.2 KB

1234567891011121314151617181920212223242526
  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_VALID_IMPLEMENTATION_HPP
  8. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_IMPLEMENTATION_HPP
  9. #include <boost/geometry/algorithms/detail/is_valid/pointlike.hpp>
  10. #include <boost/geometry/algorithms/detail/is_valid/linear.hpp>
  11. #include <boost/geometry/algorithms/detail/is_valid/polygon.hpp>
  12. #include <boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>
  13. #include <boost/geometry/algorithms/detail/is_valid/ring.hpp>
  14. #include <boost/geometry/algorithms/detail/is_valid/segment.hpp>
  15. #include <boost/geometry/algorithms/detail/is_valid/box.hpp>
  16. #include <boost/geometry/strategies/relate/cartesian.hpp>
  17. #include <boost/geometry/strategies/relate/geographic.hpp>
  18. #include <boost/geometry/strategies/relate/spherical.hpp>
  19. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_IMPLEMENTATION_HPP