diff options
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ namespace Bu | |||
25 | *@param value (typename) The type of data to store in your list | 25 | *@param value (typename) The type of data to store in your list |
26 | *@param valuealloc (typename) Memory Allocator for your value type | 26 | *@param valuealloc (typename) Memory Allocator for your value type |
27 | *@param linkalloc (typename) Memory Allocator for the list links. | 27 | *@param linkalloc (typename) Memory Allocator for the list links. |
28 | *@ingroup Containers | ||
28 | */ | 29 | */ |
29 | template<typename value, typename valuealloc=std::allocator<value>, typename linkalloc=std::allocator<struct ListLink<value> > > | 30 | template<typename value, typename valuealloc=std::allocator<value>, typename linkalloc=std::allocator<struct ListLink<value> > > |
30 | class List | 31 | class List |