InnoDB Plugin  1.0
Data Fields
ut_list_node< TYPE > Struct Template Reference

#include <ut0lst.h>

Collaboration diagram for ut_list_node< TYPE >:
Collaboration graph
[legend]

Data Fields

TYPE * prev
TYPE * next

Detailed Description

template<typename TYPE>
struct ut_list_node< TYPE >

This macro expands to the unnamed type definition of a struct which should be embedded in the nodes of the list, the node type must be a struct. This struct contains the pointers to next and previous nodes in the list. The name of the field in the node struct should be the name given to the list.

Parameters
TYPEthe list node type name

Field Documentation

template<typename TYPE>
TYPE* ut_list_node< TYPE >::next

pointer to next node, NULL if end of list

template<typename TYPE>
TYPE* ut_list_node< TYPE >::prev

pointer to the previous node, NULL if start of list


The documentation for this struct was generated from the following file: