#include <stl_block_list.h>
You construct such a list like this: CSTLBlockList<uint> myList(ptrOnBlockMemory);
Nevrax France
Definition at line 49 of file stl_block_list.h.
Public Types | |
| typedef NLMISC::CSTLBlockList< T >::const_iterator | TBlockListConstIt |
| typedef NLMISC::CSTLBlockList< T >::size_type | TSizeType |
Public Member Functions | |
| CSTLBlockList (TBlockListConstIt first, TBlockListConstIt last, CBlockMemory< T, false > *bm) | |
| CSTLBlockList (TSizeType n, const T &v, CBlockMemory< T, false > *bm) | |
| CSTLBlockList (TSizeType n, CBlockMemory< T, false > *bm) | |
| CSTLBlockList (CBlockMemory< T, false > *bm) | |
|
|||||
|
Definition at line 54 of file stl_block_list.h. |
|
|||||
|
Definition at line 53 of file stl_block_list.h. |
|
||||||||||
|
Definition at line 56 of file stl_block_list.h.
00056 :
00057 std::list<T, CSTLBlockAllocator<T> >(CSTLBlockAllocator<T>(bm))
00058 {
00059 }
|
|
||||||||||||||||
|
Definition at line 61 of file stl_block_list.h.
00061 :
00062 std::list<T, CSTLBlockAllocator<T> >(n,T(),CSTLBlockAllocator<T>(bm))
00063 {
00064 }
|
|
||||||||||||||||||||
|
Definition at line 66 of file stl_block_list.h.
00066 : 00067 std::list<T, CSTLBlockAllocator<T> >(n,v,CSTLBlockAllocator<T>(bm)) 00068 { 00069 } |
|
||||||||||||||||||||
|
Definition at line 72 of file stl_block_list.h.
00072 :
00073 std::list<T, CSTLBlockAllocator<T> >(first,last,CSTLBlockAllocator<T>(bm))
00074 {
00075 }
|
1.3.6