| 1 | // Boost.Geometry (aka GGL, Generic Geometry Library) |
| 2 | |
| 3 | // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. |
| 4 | // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. |
| 5 | // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. |
| 6 | |
| 7 | // This file was modified by Oracle on 2020-2021. |
| 8 | // Modifications copyright (c) 2020-2021, Oracle and/or its affiliates. |
| 9 | // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle |
| 10 | |
| 11 | // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library |
| 12 | // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. |
| 13 | |
| 14 | // Use, modification and distribution is subject to the Boost Software License, |
| 15 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 16 | // http://www.boost.org/LICENSE_1_0.txt) |
| 17 | |
| 18 | #ifndef BOOST_GEOMETRY_GEOMETRIES_HPP |
| 19 | #define BOOST_GEOMETRY_GEOMETRIES_HPP |
| 20 | |
| 21 | #include <boost/geometry/geometries/box.hpp> |
| 22 | #include <boost/geometry/geometries/geometry_collection.hpp> |
| 23 | #include <boost/geometry/geometries/linestring.hpp> |
| 24 | #include <boost/geometry/geometries/multi_linestring.hpp> |
| 25 | #include <boost/geometry/geometries/multi_point.hpp> |
| 26 | #include <boost/geometry/geometries/multi_polygon.hpp> |
| 27 | #include <boost/geometry/geometries/point.hpp> |
| 28 | #include <boost/geometry/geometries/point_xy.hpp> |
| 29 | #include <boost/geometry/geometries/point_xyz.hpp> |
| 30 | #include <boost/geometry/geometries/polygon.hpp> |
| 31 | #include <boost/geometry/geometries/ring.hpp> |
| 32 | #include <boost/geometry/geometries/segment.hpp> |
| 33 | |
| 34 | #endif // BOOST_GEOMETRY_GEOMETRIES_HPP |
| 35 | |