implementation.hpp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
  5. // Copyright (c) 2013-2014 Adam Wulkiewicz, Lodz, Poland.
  6. // This file was modified by Oracle on 2014, 2018.
  7. // Modifications copyright (c) 2014-2018, Oracle and/or its affiliates.
  8. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
  9. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  10. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  11. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  12. // Use, modification and distribution is subject to the Boost Software License,
  13. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  14. // http://www.boost.org/LICENSE_1_0.txt)
  15. #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP
  16. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP
  17. // the implementation details
  18. #include <boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>
  19. #include <boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>
  20. #include <boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>
  21. #include <boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>
  22. #include <boost/geometry/algorithms/detail/distance/linear_to_box.hpp>
  23. #include <boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>
  24. #include <boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>
  25. #include <boost/geometry/algorithms/detail/distance/segment_to_box.hpp>
  26. #include <boost/geometry/algorithms/detail/distance/box_to_box.hpp>
  27. #include <boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>
  28. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP