![]() |
#include <CGAL/Linear_cell_complex_min_items.h>
The class Linear_cell_complex_min_items<d> defines the type of darts, which is a Dart_wrapper::Dart<d,LCC>, and the traits class used. In this class, 0-attributes are enabled and associated with Cell_attribute_with_point.
The following example shows one implementation of the Linear_cell_complex_min_items<d> class.
template <unsigned int d>
struct Linear_cell_complex_min_items
{
template <class LCC>
struct Dart_wrapper
{
typedef CGAL::Dart<d, LCC> Dart;
typedef CGAL::Cell_attribute_with_point<LCC> Vertex_attrib;
typedef CGAL::cpp0x::tuple<Vertex_attrib> Attributes;
};
};