![]() |
#include <CGAL/Combinatorial_map_min_items.h>
The class Combinatorial_map_min_items<d> is a model of the CombinatorialMapItems concept. It defines the type of darts which is a CGAL::Dart<d,CMap>. The Combinatorial_map_min_items<d> has a template argument for the dimension of the combinatorial map. In this class, no attribute is enabled.
The following example shows the implementation of the CGAL::Combinatorial_map_min_items class.
template <unsigned int d>
struct Combinatorial_map_min_items
{
template <class CMap>
struct Dart_wrapper
{
typedef CGAL::Dart<d, CMap> Dart;
typedef CGAL::cpp0x::tuple<> Attributes;
};
};