summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/SL_Server.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/drwho/SL_Server.h')
-rw-r--r--ACE/apps/drwho/SL_Server.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/apps/drwho/SL_Server.h b/ACE/apps/drwho/SL_Server.h
new file mode 100644
index 00000000000..2a8ee2ba054
--- /dev/null
+++ b/ACE/apps/drwho/SL_Server.h
@@ -0,0 +1,34 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// drwho
+//
+// = FILENAME
+// SL_Server.h
+//
+// = AUTHOR
+// Douglas C. Schmidt
+//
+// ============================================================================
+
+#ifndef _SL_SERVER_H
+#define _SL_SERVER_H
+
+#include "Single_Lookup.h"
+
+class SL_Server : public Single_Lookup
+{
+ // = TITLE
+ // Provides the server's single user lookup table abstraction.
+
+public:
+ SL_Server (const char *packet);
+ virtual Protocol_Record *insert (const char *key_name,
+ int max_len = MAXUSERIDNAMELEN);
+ virtual Protocol_Record *get_each_entry (void);
+};
+
+#endif /* _SL_SERVER_H */