diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-10-16 03:02:11 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-10-16 03:02:11 +0000 |
commit | 9031e2af7dd4e65ec70890ee78a7cf600d1b2cc5 (patch) | |
tree | 17bc9d96b13d16d79385016c087321fc1267743f /src/hash.h | |
parent | 93c028162318a00b9bd03fc4a48383f830cc529d (diff) | |
download | libbu++-9031e2af7dd4e65ec70890ee78a7cf600d1b2cc5.tar.gz libbu++-9031e2af7dd4e65ec70890ee78a7cf600d1b2cc5.tar.bz2 libbu++-9031e2af7dd4e65ec70890ee78a7cf600d1b2cc5.tar.xz libbu++-9031e2af7dd4e65ec70890ee78a7cf600d1b2cc5.zip |
Many, many changes. Documentation changes, renamed the socket class to
TcpSocket, fixed many other things, and finally removed ParamProc. Anything
that needs it will now have to switch to OptParser.
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -54,6 +54,7 @@ namespace Bu | |||
54 | typename valuealloc, typename challoc> | 54 | typename valuealloc, typename challoc> |
55 | class Hash; | 55 | class Hash; |
56 | 56 | ||
57 | /** @cond DEVEL */ | ||
57 | template<typename key, typename value, typename sizecalc, typename keyalloc, | 58 | template<typename key, typename value, typename sizecalc, typename keyalloc, |
58 | typename valuealloc, typename challoc > | 59 | typename valuealloc, typename challoc > |
59 | class HashCore | 60 | class HashCore |
@@ -399,6 +400,7 @@ namespace Bu | |||
399 | challoc ca; | 400 | challoc ca; |
400 | sizecalc szCalc; | 401 | sizecalc szCalc; |
401 | }; | 402 | }; |
403 | /** @endcond */ | ||
402 | 404 | ||
403 | /** | 405 | /** |
404 | * Libbu++ Template Hash Table. This is your average hash table, that uses | 406 | * Libbu++ Template Hash Table. This is your average hash table, that uses |