Class

CGAL::Combinatorial_map_min_items<d>

#include <CGAL/Combinatorial_map_min_items.h>

Definition

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.

Is Model for the Concepts

CombinatorialMapItems

Example

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;
   };
};

See Also

CGAL::Combinatorial_map<d,CMItems,Alloc>
CGAL::Dart<d,CMap>