diff --git a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp index c2adfce40a1..bdc7e8a1516 100644 --- a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp +++ b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp @@ -57,6 +57,8 @@ private: // The partial specialization must be defined before Alpha Shapes-related headers #include +#include +#include // ExactAlphaComparisonTag is false typedef K Gt; diff --git a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_shapes_2.cpp b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_shapes_2.cpp index 0fd24993b5d..505c2bcac4e 100644 --- a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_shapes_2.cpp +++ b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_shapes_2.cpp @@ -1,12 +1,17 @@ #include -#include -#include -#include -#include +#include +#include +#include +#include + +#include +#include + #include -#include +#include #include +#include typedef CGAL::Exact_predicates_inexact_constructions_kernel K; diff --git a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_weighted_alpha_shapes_2.cpp b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_weighted_alpha_shapes_2.cpp index bb7112c924a..5e9fa6ad099 100644 --- a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_weighted_alpha_shapes_2.cpp +++ b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_weighted_alpha_shapes_2.cpp @@ -1,11 +1,14 @@ #include -#include -#include -#include +#include +#include +#include +#include + #include -#include +#include #include +#include typedef CGAL::Exact_predicates_inexact_constructions_kernel K; diff --git a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h index 7f72073acc8..af575b1d0bd 100644 --- a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h +++ b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h @@ -12,10 +12,6 @@ // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// -// // Author(s) : Tran Kai Frank DA // Andreas Fabri @@ -24,31 +20,30 @@ #include - -#include - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include #include +// for convenience only +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include namespace CGAL { template < class Dt,class ExactAlphaComparisonTag = Tag_false> -class Alpha_shape_2 : public Dt +class Alpha_shape_2 : public Dt { // DEFINITION The class Alpha_shape_2
represents the family // of alpha-shapes of points in a plane for all positive alpha. It diff --git a/Alpha_shapes_2/test/Alpha_shapes_2/test_alpha.cpp b/Alpha_shapes_2/test/Alpha_shapes_2/test_alpha.cpp index 251a01b4bf5..715416fc3b5 100644 --- a/Alpha_shapes_2/test/Alpha_shapes_2/test_alpha.cpp +++ b/Alpha_shapes_2/test/Alpha_shapes_2/test_alpha.cpp @@ -8,8 +8,10 @@ #include #include -#include #include +#include +#include +#include typedef double coord_type; diff --git a/Alpha_shapes_2/test/Alpha_shapes_2/test_weight.cpp b/Alpha_shapes_2/test/Alpha_shapes_2/test_weight.cpp index 1ddbf60b5a4..17a441b1978 100644 --- a/Alpha_shapes_2/test/Alpha_shapes_2/test_weight.cpp +++ b/Alpha_shapes_2/test/Alpha_shapes_2/test_weight.cpp @@ -7,15 +7,18 @@ corresponding to the weighted Alpha Shape. #include #include + +#include +#include +#include +#include + #include #include -#include #include -#include +#include #include - -#include -#include +#include typedef double coord_type; diff --git a/Alpha_shapes_3/include/CGAL/Alpha_shape_3.h b/Alpha_shapes_3/include/CGAL/Alpha_shape_3.h index c1ec0c05ca6..8a7b13a9e1b 100644 --- a/Alpha_shapes_3/include/CGAL/Alpha_shape_3.h +++ b/Alpha_shapes_3/include/CGAL/Alpha_shape_3.h @@ -12,10 +12,6 @@ // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// -// // Author(s) : Tran Kai Frank DA // Andreas Fabri // Mariette Yvinec @@ -25,28 +21,27 @@ #include +#include #include - -#include -#include -#include -#include -#include -#include -#include - -#include +#include +#include #include #include -#include -#include -#include -#include -#include #ifdef CGAL_USE_GEOMVIEW #include // TBC #endif +#include + +#include + +#include +#include +#include +#include +#include +#include +#include //------------------------------------------------------------------- namespace CGAL { diff --git a/CGAL_ipelets/demo/CGAL_ipelets/alpha_shapes.cpp b/CGAL_ipelets/demo/CGAL_ipelets/alpha_shapes.cpp index defdb229844..b80ab1330ce 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/alpha_shapes.cpp +++ b/CGAL_ipelets/demo/CGAL_ipelets/alpha_shapes.cpp @@ -24,6 +24,8 @@ #include #include #include +#include +#include #include diff --git a/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp b/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp index 4d85393bbdc..b1f1b3c11b0 100644 --- a/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp +++ b/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp @@ -4,6 +4,8 @@ #include #include #include +#include +#include #include diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp index fff6287c3bb..a605661d763 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp @@ -23,6 +23,8 @@ #include #include #include +#include +#include #include