diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
commit | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch) | |
tree | da50d054f9c761c3f6a5923f6979e93306c56d68 /apps/drwho/SL_Server.cpp | |
parent | 0e555b9150d38e3b3473ba325b56db2642e6352b (diff) | |
download | ATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz |
Repo restructuring
Diffstat (limited to 'apps/drwho/SL_Server.cpp')
-rw-r--r-- | apps/drwho/SL_Server.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/drwho/SL_Server.cpp b/apps/drwho/SL_Server.cpp deleted file mode 100644 index 7dc172deb08..00000000000 --- a/apps/drwho/SL_Server.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// $Id$ - -#include "global.h" -#include "SL_Server.h" -#include "ace/OS_NS_string.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; -} - |