// 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_OBSERVER_H #define CGAL_ARR_OBSERVER_H /*! \file * Definition of the `Arr_observer` base class mainly for backward * compatibility. */ #include #include namespace CGAL { template using Arr_observer = typename Arrangement_::Observer; } // namespace CGAL #include #endif