From 25d658f2fad49c1831808a79ff8667c021d2da3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 15 Jan 2024 09:58:43 +0100 Subject: [PATCH] doc the real type --- Orthtree/include/CGAL/Octree.h | 7 ------- Orthtree/include/CGAL/Quadtree.h | 9 ++------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/Orthtree/include/CGAL/Octree.h b/Orthtree/include/CGAL/Octree.h index 1bdb02c7f2c..b5b7b282b45 100644 --- a/Orthtree/include/CGAL/Octree.h +++ b/Orthtree/include/CGAL/Octree.h @@ -28,9 +28,6 @@ namespace CGAL { - `Octree` - `Orthtree>>`. - \warning This is a not a real class but an alias, please refer to - the documentation of `Orthtree`. - \tparam GeomTraits must be a model of `Kernel` \tparam PointRange must be a model of `Range` whose value type is the key type of `PointMap` \tparam PointMap must be a model of `ReadablePropertyMap` whose value type is `GeomTraits::Point_3` @@ -40,11 +37,7 @@ template < typename PointRange, typename PointMap = Identity_property_map::value_type> > -#ifdef DOXYGEN_RUNNING - class Octree; -#else using Octree = Orthtree>>; -#endif } // namespace CGAL diff --git a/Orthtree/include/CGAL/Quadtree.h b/Orthtree/include/CGAL/Quadtree.h index f9474a961df..3c38f50b2a6 100644 --- a/Orthtree/include/CGAL/Quadtree.h +++ b/Orthtree/include/CGAL/Quadtree.h @@ -28,9 +28,6 @@ namespace CGAL { - `Quadtree` - `Orthtree>>`. - \warning This is a not a real class but an alias, please refer to - the documentation of `Orthtree`. - \tparam GeomTraits must be a model of `Kernel` \tparam PointRange must be a model of `Range` whose value type is the key type of `PointMap` \tparam PointMap must be a model of `ReadablePropertyMap` whose value type is `GeomTraits::Point_2` @@ -38,11 +35,9 @@ namespace CGAL { template ::value_type> > -#ifdef DOXYGEN_RUNNING -class Quadtree; -#else + using Quadtree = Orthtree>>; -#endif + } // namespace CGAL