Subversion Repositories gelsvn

Rev

Rev 60 | Rev 448 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 60 Rev 89
Line 4... Line 4...
4
#include "HashKey.h"
4
#include "HashKey.h"
5
 
5
 
6
#include <functional>
6
#include <functional>
7
#include <iostream>
7
#include <iostream>
8
 
8
 
9
namespace Components
9
namespace Util
10
{
10
{
11
 
11
 
12
	namespace
12
	namespace
13
	{
13
	{
14
		const int HASH_EXPAND_LOAD = 80;
14
		const int HASH_EXPAND_LOAD = 80;
15
	};
15
	};
16
 
16
 
17
	/** Hashtable class template. 
17
	/** \brief Hashtable class template. 
18
 
18
 
19
	This class template has taken for too long to get right. That is because
19
	This class template has taken for too long to get right. That is because
20
	it is flexible. It can be used either as a simple (key, value) database
20
	it is flexible. It can be used either as a simple (key, value) database
21
	or as a reference counted database.
21
	or as a reference counted database.
22
 
22