#include <list_node_pool.h>
Inheritance diagram for gslib::static_container::list_node_pool< Value, Size >:
Public Member Functions | |
list_node_pool () | |
virtual size_type | size () const |
Private Member Functions | |
virtual node * | getTop () |
Private Attributes | |
uintptr_t | buffer_ [Size *sizeof(node)/sizeof(uintptr_t)] |
Definition at line 160 of file list_node_pool.h.
|
Definition at line 166 of file list_node_pool.h. References gslib::static_container::abstruct_list_node_pool< Value >::init().
00166 { 00167 init(); 00168 } |
Here is the call graph for this function:
|
Implements gslib::static_container::abstruct_list_node_pool< Value >. Definition at line 162 of file list_node_pool.h. References gslib::static_container::list_node_pool< Value, Size >::buffer_.
00162 { 00163 return reinterpret_cast< node* >( buffer_ ); 00164 } |
|
Implements gslib::static_container::abstruct_list_node_pool< Value >. Definition at line 170 of file list_node_pool.h.
00170 {
00171 return Size;
00172 }
|
|
Definition at line 161 of file list_node_pool.h. Referenced by gslib::static_container::list_node_pool< Value, Size >::getTop(). |