Apply patch for [CVE-2012-2677][boost] ordered_malloc() overflow
[external/boost.git] / boost / polygon / polygon.hpp
1 /*
2   Copyright 2008 Intel Corporation
3  
4   Use, modification and distribution are subject to the Boost Software License,
5   Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6   http://www.boost.org/LICENSE_1_0.txt).
7 */
8 #ifndef BOOST_POLYGON_POLYGON_HPP
9 #define BOOST_POLYGON_POLYGON_HPP
10 #define BOOST_POLYGON_VERSION 014401
11
12 #include "isotropy.hpp"
13
14 //point
15 #include "point_data.hpp"
16 #include "point_traits.hpp"
17 #include "point_concept.hpp"
18
19 //point 3d
20 #include "point_3d_data.hpp"
21 #include "point_3d_traits.hpp"
22 #include "point_3d_concept.hpp"
23
24 #include "transform.hpp"
25 #include "detail/transform_detail.hpp"
26
27 //interval
28 #include "interval_data.hpp"
29 #include "interval_traits.hpp"
30 #include "interval_concept.hpp"
31
32 //rectangle
33 #include "rectangle_data.hpp"
34 #include "rectangle_traits.hpp"
35 #include "rectangle_concept.hpp"
36
37 //algorithms needed by polygon types
38 #include "detail/iterator_points_to_compact.hpp"
39 #include "detail/iterator_compact_to_points.hpp"
40
41 //polygons
42 #include "polygon_45_data.hpp"
43 #include "polygon_data.hpp"
44 #include "polygon_90_data.hpp"
45 #include "polygon_90_with_holes_data.hpp"
46 #include "polygon_45_with_holes_data.hpp"
47 #include "polygon_with_holes_data.hpp"
48 #include "polygon_traits.hpp"
49
50 //manhattan boolean algorithms
51 #include "detail/boolean_op.hpp"
52 #include "detail/polygon_formation.hpp"
53 #include "detail/rectangle_formation.hpp"
54 #include "detail/max_cover.hpp"
55 #include "detail/property_merge.hpp"
56 #include "detail/polygon_90_touch.hpp"
57 #include "detail/iterator_geometry_to_set.hpp"
58
59 //45 boolean op algorithms
60 #include "detail/boolean_op_45.hpp"
61 #include "detail/polygon_45_formation.hpp"
62
63 //polygon set data types
64 #include "polygon_90_set_data.hpp"
65 //polygon set trait types
66 #include "polygon_90_set_traits.hpp"
67 //polygon set concepts
68 #include "polygon_90_set_concept.hpp"
69 //boolean operator syntax
70 #include "detail/polygon_90_set_view.hpp"
71
72 //45 boolean op algorithms
73 #include "detail/polygon_45_touch.hpp"
74 #include "detail/property_merge_45.hpp"
75 #include "polygon_45_set_data.hpp"
76 #include "polygon_45_set_traits.hpp"
77 #include "polygon_45_set_concept.hpp"
78 #include "detail/polygon_45_set_view.hpp"
79
80 //arbitrary polygon algorithms
81 #include "detail/polygon_arbitrary_formation.hpp"
82 #include "polygon_set_data.hpp"
83
84 //general scanline
85 #include "detail/scan_arbitrary.hpp"
86 #include "polygon_set_traits.hpp"
87 #include "detail/polygon_set_view.hpp"
88
89 #include "polygon_set_concept.hpp"
90
91 #endif