diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /apps/drwho/BS_Client.h | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'apps/drwho/BS_Client.h')
-rw-r--r-- | apps/drwho/BS_Client.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/apps/drwho/BS_Client.h b/apps/drwho/BS_Client.h deleted file mode 100644 index 9859768df82..00000000000 --- a/apps/drwho/BS_Client.h +++ /dev/null @@ -1,46 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// drwho -// -// = FILENAME -// BS_Client.h -// -// = AUTHOR -// Douglas C. Schmidt -// -// ============================================================================ - -#ifndef _BS_CLIENT_H -#define _BS_CLIENT_H - -#include "Binary_Search.h" - -class BS_Client : public Binary_Search -{ - // = TITLE - // Provides the client's binary search lookup table abstraction. -public: - // = Initialization. - BS_Client (void); - // Constructor. - - virtual Protocol_Record *insert (const char *key_name, - int max_len = MAXUSERIDNAMELEN); - // This function is used to merge the <key_name> from server - // <host_name> into the sorted list of userids kept on the client's - // side. Since we *know* we are going to find the name we use the - // traditional binary search. - - virtual Protocol_Record *get_each_entry (void); - // An iterator, similar to Binary_Search::get_next_friend, though in - // this case the friend records are returned in the order they - // appeared in the friend file, rather than in sorted order. Also, - // we skip over entries that don't have any hosts associated with - // them. -}; - -#endif /* _BS_CLIENT_H */ |