#include <list.h>
Inheritance diagram for gslib::static_container::list< Value, MaxSize >:
Public Member Functions | |
list () | |
list (const list &other) | |
list & | operator= (const list &other) |
bool | full () const |
満タン? | |
Static Public Member Functions | |
size_type | max_size () |
最大サイズ取得 | |
Private Types | |
typedef boost::base_from_member< list_node_pool< Value, MaxSize > > | pool |
typedef lodge_list< Value > | parent |
アラインは正しく取られることを保障する。
Definition at line 73 of file list.h.
|
|
|
Reimplemented from gslib::static_container::lodge_list< Value >. |
|
Definition at line 81 of file list.h.
00081 : parent( pool::member ) {} |
|
Definition at line 83 of file list.h.
|
|
満タン?
Definition at line 95 of file list.h.
00095 {
00096 return pool::member.full();
00097 }
|
|
最大サイズ取得
Definition at line 100 of file list.h.
00100 {
00101 return MaxSize;
00102 }
|
|
Definition at line 86 of file list.h.
|