From cb15a3506e0b7a8a103add083b7795b332223091 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 17 Sep 2003 12:09:44 +0000 Subject: [PATCH] - Changed CartesianCoordinateConstIterator to CartesianConstIterator --- Packages/Cartesian_kernel/changes.txt | 3 +++ .../include/CGAL/Cartesian/Cartesian_base.h | 6 ++---- .../include/CGAL/Cartesian/function_objects.h | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Packages/Cartesian_kernel/changes.txt b/Packages/Cartesian_kernel/changes.txt index 8beeb5622c1..98fd9f43ba5 100644 --- a/Packages/Cartesian_kernel/changes.txt +++ b/Packages/Cartesian_kernel/changes.txt @@ -1,3 +1,6 @@ +Version 6.98 (17 September 2003) +- Changed CartesianCoordinateConstIterator to CartesianConstIterator + Version 6.97 (8 September 2003) - bug fix in Segment_2.h diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Cartesian_base.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Cartesian_base.h index 74c3189b638..47f022656c2 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Cartesian_base.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Cartesian_base.h @@ -107,10 +107,8 @@ struct Cartesian_base typedef SphereC3 Sphere_3; typedef Aff_transformationC3 Aff_transformation_3; - typedef Cartesian_coordinate_iterator_2 - Cartesian_coordinate_const_iterator_2; - typedef Cartesian_coordinate_iterator_3 - Cartesian_coordinate_const_iterator_3; + typedef Cartesian_coordinate_iterator_2 Cartesian_const_iterator_2; + typedef Cartesian_coordinate_iterator_3 Cartesian_const_iterator_3; // Undocumented stuff. typedef Data_accessorC2 Data_accessor_2; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h index b7bb902ca59..590ef31702d 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h @@ -102,8 +102,8 @@ namespace CartesianKernelFunctors { using CommonKernelFunctors::Construct_vertex_3; using CommonKernelFunctors::Construct_bbox_2; using CommonKernelFunctors::Construct_bbox_3; - using CommonKernelFunctors::Construct_cartesian_coordinate_const_iterator_2; - using CommonKernelFunctors::Construct_cartesian_coordinate_const_iterator_3; + using CommonKernelFunctors::Construct_cartesian_const_iterator_2; + using CommonKernelFunctors::Construct_cartesian_const_iterator_3; using CommonKernelFunctors::Counterclockwise_in_between_2; using CommonKernelFunctors::Do_intersect_2; using CommonKernelFunctors::Do_intersect_3;