implementation.hpp 951 B

123456789101112131415161718192021
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2014, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  4. // Licensed under the Boost Software License version 1.0.
  5. // http://www.boost.org/users/license.html
  6. #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_IMPLEMENTATION_HPP
  7. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_IMPLEMENTATION_HPP
  8. #include <boost/geometry/algorithms/detail/is_valid/pointlike.hpp>
  9. #include <boost/geometry/algorithms/detail/is_valid/linear.hpp>
  10. #include <boost/geometry/algorithms/detail/is_valid/polygon.hpp>
  11. #include <boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>
  12. #include <boost/geometry/algorithms/detail/is_valid/ring.hpp>
  13. #include <boost/geometry/algorithms/detail/is_valid/segment.hpp>
  14. #include <boost/geometry/algorithms/detail/is_valid/box.hpp>
  15. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_IMPLEMENTATION_HPP