CGAL 5.0 - STL Extensions for CGAL
|
#include <CGAL/In_place_list.h>
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.
Variables | |
T * | next_link |
forward pointer | |
T * | prev_link |
backward pointer | |