// Copyright (c) 2023 Tel-Aviv University (Israel). // 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): Efi Fogel #ifndef CGAL_ARR_DEFAULT_DCEL_H #define CGAL_ARR_DEFAULT_DCEL_H #include #include /*! \file * The definition of the Arr_default_dcel type. */ #include namespace CGAL { /*! The default arrangement DCEL type. * The Traits parameters corresponds to a geometric traits class, which * defines the Point_2 and X_monotone_curve_2 types. */ template using Arr_default_dcel = Arr_dcel; } //namespace CGAL #endif