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