My Project
|
#include <sql_list.h>
Public Member Functions | |
SQL_I_List (const SQL_I_List &tmp) | |
void | empty () |
void | link_in_list (T *element, T **next_ptr) |
void | save_and_clear (SQL_I_List< T > *save) |
void | push_front (SQL_I_List< T > *save) |
void | push_back (SQL_I_List< T > *save) |
Public Attributes | |
uint | elements |
T * | first |
T ** | next |
Simple intrusive linked list.
T* SQL_I_List< T >::first |
The first element in the list.
T** SQL_I_List< T >::next |
A reference to the next element in the list.