#include <list.h>
static_container::list< Value, MaxSize >に対する継承グラフ
Public メソッド | |
list () | |
list (const list &other) | |
list & | operator= (const list &other) |
bool | full () const |
満タン? | |
Static Public メソッド | |
size_type | max_size () |
最大サイズ取得 | |
Private 型 | |
typedef boost::base_from_member< list_node_pool< Value, MaxSize > > | pool |
typedef lodge_list< Value > | parent |
アラインは正しく取られることを保障する。
|
|
|
static_container::lodge_list< Value >を再定義しています。 |
|
00026 : parent( pool::member ) {} |
|
|
|
満タン?
00040 {
00041 return pool::member.full();
00042 }
|
|
最大サイズ取得
00045 {
00046 return MaxSize;
00047 }
|
|
|