EPICS ARCHIVER V4
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups
HashTable.h
1 // -*- c++ -*-
2 #if !defined(_HASHTABLE_H_)
3 #define _HASHTABLE_H_
4 
7 class HashTable {
8 
9 public:
10 
11  enum {
12  HashTableSize = 256
13  };
14 
16  typedef unsigned short HashValue;
17 
19  static HashValue Hash (const char *string);
20 
21 };
22 
23 #endif
unsigned short HashValue
data type of a hash value
Definition: HashTable.h:16
static HashValue Hash(const char *string)
Returns a hash value for the specified string.
Hash table.
Definition: HashTable.h:7