diff options
Diffstat (limited to 'ACE/apps/drwho/HT_Server.h')
-rw-r--r-- | ACE/apps/drwho/HT_Server.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ACE/apps/drwho/HT_Server.h b/ACE/apps/drwho/HT_Server.h new file mode 100644 index 00000000000..3dbff633cfb --- /dev/null +++ b/ACE/apps/drwho/HT_Server.h @@ -0,0 +1,32 @@ +/* -*- C++ -*- */ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// drwho +// +// = FILENAME +// HT_Server.h +// +// = AUTHOR +// Douglas C. Schmidt +// +// ============================================================================ + +#ifndef _HT_SERVER_H +#define _HT_SERVER_H + +#include "Hash_Table.h" + +class HT_Server : public Hash_Table +{ + // = TITLE + // Provides the server's hash table abstraction. + +public: + virtual Protocol_Record *insert (const char *key_name, + int max_len = MAXUSERIDNAMELEN); +}; + +#endif /* _HT_SERVER_H */ |