1 // Copyright (c) 2010,2012  GeometryFactory Sarl (France).
2 // All rights reserved.
3 //
4 // This file is part of CGAL (www.cgal.org).
5 //
6 // $URL: https://github.com/CGAL/cgal/blob/v5.3/Mesh_3/include/CGAL/Mesh_3/experimental/Get_facet_patch_id.h $
7 // $Id: Get_facet_patch_id.h bf128b3 2021-01-25T16:19:23+01:00 Sébastien Loriot
8 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
9 //
10 //
11 // Author(s)     : Laurent Rineau
12 //
13 
14 #ifndef CGAL_MESH_3_GET_FACET_PATCH_ID_H
15 #define CGAL_MESH_3_GET_FACET_PATCH_ID_H
16 
17 #include <CGAL/license/Mesh_3.h>
18 
19 #include <CGAL/Mesh_3/experimental/Facet_patch_id_map.h>
20 
21 namespace CGAL { namespace Mesh_3 {
22 
23 // backward compatibility with user code
24 template <typename MeshDomain>
25 using Get_facet_patch_id_sm = Facet_patch_id_map<MeshDomain, typename MeshDomain::AABB_tree>;
26 
27 }} // end namespace CGAL::Mesh_3
28 
29 #endif // CGAL_MESH_3_GET_FACET_PATCH_ID_H
30