From 2eff0eb0e05b8ce4715ce9b17975fe617299ee37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 4 Mar 2024 13:50:51 +0100 Subject: [PATCH] add missing files --- .../include/CGAL/AABB_segment_primitive.h | 38 +++++++++++++++++++ .../include/CGAL/AABB_triangle_primitive.h | 38 +++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 AABB_tree/include/CGAL/AABB_segment_primitive.h create mode 100644 AABB_tree/include/CGAL/AABB_triangle_primitive.h diff --git a/AABB_tree/include/CGAL/AABB_segment_primitive.h b/AABB_tree/include/CGAL/AABB_segment_primitive.h new file mode 100644 index 00000000000..b9b0ca3c7fe --- /dev/null +++ b/AABB_tree/include/CGAL/AABB_segment_primitive.h @@ -0,0 +1,38 @@ +// Copyright (c) 2024 INRIA Sophia-Antipolis (France). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org). +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial +// +// +// Author(s) : Sebastien Loriot +// + +#ifndef CGAL_AABB_SEGMENT_PRIMITIVE_H_ +#define CGAL_AABB_SEGMENT_PRIMITIVE_H_ + +#include + +#define CGAL_DEPRECATED_HEADER "" +#define CGAL_REPLACEMENT_HEADER "" +#include + +#ifndef CGAL_NO_DEPRECATED_CODE + +#include + +namespace CGAL{ + +template < class GeomTraits, + class Iterator, + class CacheDatum=Tag_false> +using AABB_segment_primitive = AABB_segment_primitive_3; + +} // CGAL namespace + +#endif // CGAL_NO_DEPRECATED_CODE + +#endif //CGAL_AABB_SEGMENT_PRIMITIVE_H_ diff --git a/AABB_tree/include/CGAL/AABB_triangle_primitive.h b/AABB_tree/include/CGAL/AABB_triangle_primitive.h new file mode 100644 index 00000000000..edf1c94299c --- /dev/null +++ b/AABB_tree/include/CGAL/AABB_triangle_primitive.h @@ -0,0 +1,38 @@ +// Copyright (c) 2024 INRIA Sophia-Antipolis (France). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org). +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial +// +// +// Author(s) : Sebastien Loriot +// + +#ifndef CGAL_AABB_TRIANGLE_PRIMITIVE_H_ +#define CGAL_AABB_TRIANGLE_PRIMITIVE_H_ + +#include + +#define CGAL_DEPRECATED_HEADER "" +#define CGAL_REPLACEMENT_HEADER "" +#include + +#ifndef CGAL_NO_DEPRECATED_CODE + +#include + +namespace CGAL { + +template < class GeomTraits, + class Iterator, + class CacheDatum=Tag_false> +using AABB_triangle_primitive = AABB_triangle_primitive_3; + +} //CGAL namespace + +#endif // CGAL_NO_DEPRECATED_CODE + +#endif //CGAL_AABB_TRIANGLE_PRIMITIVE_H_