CGAL 5.3 - STL Extensions for CGAL
CGAL::In_place_list_base< T > Class Template Reference

#include <CGAL/In_place_list.h>

Definition

The node base classes provides pointers to build linked lists.

The class In_place_list_base<T> provides a pointer next_link for a single linked list. The class In_place_list_base<T> provides an additional pointer prev_link for doubly linked lists. These names conform to the default parameters used in the template argument lists of the container classes. The pointers are public members.

Examples:
STL_Extension/in_place_list_prog.cpp.

Variables

T * next_link
 forward pointer
 
T * prev_link
 backward pointer