diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-10-03 09:13:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-10-03 09:13:28 +0000 |
commit | b3eef5b0b82c20a9f11868ba376f6bb2d94faae4 (patch) | |
tree | 7c5f4243d3a528f86daad826ed886dea6b816871 /src/array.h | |
parent | 850ebb96df909a4113fdf9c5bf82cf0f598901ca (diff) | |
download | libbu++-b3eef5b0b82c20a9f11868ba376f6bb2d94faae4.tar.gz libbu++-b3eef5b0b82c20a9f11868ba376f6bb2d94faae4.tar.bz2 libbu++-b3eef5b0b82c20a9f11868ba376f6bb2d94faae4.tar.xz libbu++-b3eef5b0b82c20a9f11868ba376f6bb2d94faae4.zip |
Nothing about function. I added a bunch of docs and re-arranged a bunch of
the existing docs. Taking advantage of some of the cooler extra features of
doxygen I've started writing extra how-to pages covering working with sections
of the library. Also, I started grouping the classes by function so they show
up on the Modules page together, very cute.
Diffstat (limited to 'src/array.h')
-rw-r--r-- | src/array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/array.h b/src/array.h index 43892ee..75c5dd3 100644 --- a/src/array.h +++ b/src/array.h | |||
@@ -13,6 +13,7 @@ namespace Bu | |||
13 | *@param value (typename) The type of data to store in your list | 13 | *@param value (typename) The type of data to store in your list |
14 | *@param valuealloc (typename) Memory Allocator for your value type | 14 | *@param valuealloc (typename) Memory Allocator for your value type |
15 | *@param linkalloc (typename) Memory Allocator for the list links. | 15 | *@param linkalloc (typename) Memory Allocator for the list links. |
16 | *@ingroup Containers | ||
16 | */ | 17 | */ |
17 | template<typename value, int inc=10, typename valuealloc=std::allocator<value> > | 18 | template<typename value, int inc=10, typename valuealloc=std::allocator<value> > |
18 | class Array | 19 | class Array |