summaryrefslogtreecommitdiff
path: root/apps/drwho/SL_Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/SL_Server.cpp')
-rw-r--r--apps/drwho/SL_Server.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/drwho/SL_Server.cpp b/apps/drwho/SL_Server.cpp
deleted file mode 100644
index 35c29d598dc..00000000000
--- a/apps/drwho/SL_Server.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// $Id$
-
-#include "global.h"
-#include "SL_Server.h"
-
-SL_Server::SL_Server (const char *usr_name)
- : Single_Lookup (usr_name)
-{
-}
-
-Protocol_Record *
-SL_Server::get_each_entry (void)
-{
- Protocol_Record *prp = Single_Lookup::get_each_entry ();
- return prp->get_drwho_list () == 0 ? 0 : prp;
-}
-
-Protocol_Record *
-SL_Server::insert (const char *key_name, int max_len)
-{
- return ACE_OS::strncmp (key_name,
- this->prp_->get_login (),
- max_len) == 0 ? this->prp_ : 0;
-}
-