summaryrefslogtreecommitdiff
path: root/apps/drwho/HT_Client.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:28:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:28:23 +0000
commit40c229c8bd507b8ad25125e75c5d477800273068 (patch)
tree0099758312186731c20a74437a2a888dfc8bb6d2 /apps/drwho/HT_Client.h
parentb83d24d85a208c4ee539b428d3fc5e361bc2aeca (diff)
downloadATCD-40c229c8bd507b8ad25125e75c5d477800273068.tar.gz
*** empty log message ***
Diffstat (limited to 'apps/drwho/HT_Client.h')
-rw-r--r--apps/drwho/HT_Client.h21
1 files changed, 18 insertions, 3 deletions
diff --git a/apps/drwho/HT_Client.h b/apps/drwho/HT_Client.h
index 0831eb461bb..9e1512a0b80 100644
--- a/apps/drwho/HT_Client.h
+++ b/apps/drwho/HT_Client.h
@@ -1,16 +1,31 @@
/* -*- C++ -*- */
// $Id$
-/* Provides the client's hash table abstraction. */
+// ============================================================================
+//
+// = LIBRARY
+// drwho
+//
+// = FILENAME
+// HT_Client.h
+//
+// = AUTHOR
+// Douglas C. Schmidt
+//
+// ============================================================================
-#ifndef _HT_CLIENT_H
+#if !defined (_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 (char *key_name, int max_len = MAXUSERIDNAMELEN);
+ virtual Protocol_Record *insert (char *key_name,
+ int max_len = MAXUSERIDNAMELEN);
};
+
#endif /* _HT_CLIENT_H */