// Copyright (c) 2011 CNRS and LIRIS' Establishments (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL$ // $Id$ // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Guillaume Damiand // #ifndef CGAL_LINEAR_CELL_COMPLEX_H #define CGAL_LINEAR_CELL_COMPLEX_H 1 #include #include #include #include #include namespace CGAL { /** @file Linear_cell_complex.h * Definition of a linear cell complex, i.e. a combinatorial map with points * associated to all vertices. Deprecated class. */ #if !defined(CGAL_NO_DEPRECATED_CODE) template < unsigned int d_, unsigned int ambient_dim = d_, class Traits_ = Linear_cell_complex_traits, #if defined(CGAL_CMAP_DART_DEPRECATED) class Items_ = Linear_cell_complex_min_items, #else class Items_ = Linear_cell_complex_min_items, #endif class Alloc_ = CGAL_ALLOCATOR(int), template class CMap = Combinatorial_map_base, class Storage_ = CMap_linear_cell_complex_storage_1 > class CGAL_DEPRECATED Linear_cell_complex: public Linear_cell_complex_for_combinatorial_map {}; #endif } // namespace CGAL #endif // CGAL_LINEAR_CELL_COMPLEX_H // // EOF //