// Copyright (c) 2011 CNRS and LIRIS' Establishments (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Linear_cell_complex/include/CGAL/Linear_cell_complex_min_items.h $ // $Id: Linear_cell_complex_min_items.h 0308d1a 2020-03-27T18:35:15+01:00 Guillaume Damiand // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Guillaume Damiand // #ifndef CGAL_LINEAR_CELL_COMPLEX_MIN_ITEMS_H #define CGAL_LINEAR_CELL_COMPLEX_MIN_ITEMS_H 1 #if defined(CGAL_CMAP_DART_DEPRECATED) && !defined(CGAL_NO_DEPRECATED_CODE) #include #endif #include #include #include namespace CGAL { /** @file Linear_cell_complex_min_items.h * Definition of min item class for map with points. */ /** Minimal items for linear cell complexes. * Linear_cell_complex_min_items defines what is the item class * for a linear cell complex. It provides definitions for attributes * associated to vertices (containing points), and information associated with darts. */ #if defined(CGAL_CMAP_DART_DEPRECATED) && !defined(CGAL_NO_DEPRECATED_CODE) template struct CGAL_DEPRECATED Linear_cell_complex_min_items { /// Dart_wrapper defines the type of darts used. template struct Dart_wrapper { typedef CGAL::Dart Dart; typedef CGAL::Cell_attribute_with_point Vertex_attrib; typedef std::tuple Attributes; }; }; #else struct Linear_cell_complex_min_items { /// Dart_wrapper defines the type of darts used. template struct Dart_wrapper { typedef CGAL::Cell_attribute_with_point Vertex_attrib; typedef std::tuple Attributes; }; }; #endif } // namespace CGAL #endif // CGAL_LINEAR_CELL_COMPLEX_MIN_ITEMS_H // // EOF //