// Copyright (c) 2017 CNRS and LIRIS' Establishments (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // SPDX-License-Identifier: LGPL-3.0+ // // Author(s) : Guillaume Damiand // #ifndef CGAL_CELL_ATTRIBUTE_WITH_ID_H #define CGAL_CELL_ATTRIBUTE_WITH_ID_H 1 #include namespace CGAL { template class Compact_container; template class Concurrent_compact_container; namespace internal { template struct Init_id; } // end namespace internal // A cell attribute with an id, when Info_!=void template class Cell_attribute_with_id: public Cell_attribute { template friend class Compact_container; template friend class Concurrent_compact_container; protected: /// Default contructor. Cell_attribute_with_id() {} /// Contructor with an info in parameter. Cell_attribute_with_id(const Info_& ainfo) : Cell_attribute(ainfo) {} }; /// Specialization when Info==void. template class Cell_attribute_with_id: public Cell_attribute { template friend class Compact_container; template friend class Concurrent_compact_container; protected: /// Default contructor. Cell_attribute_with_id() {} }; } // namespace CGAL #endif // CGAL_CELL_ATTRIBUTE_WITH_ID_H // // EOF //