summaryrefslogtreecommitdiff
path: root/apps/drwho/Single_Lookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/Single_Lookup.h')
-rw-r--r--apps/drwho/Single_Lookup.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/apps/drwho/Single_Lookup.h b/apps/drwho/Single_Lookup.h
deleted file mode 100644
index fa86301215e..00000000000
--- a/apps/drwho/Single_Lookup.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// drwho
-//
-// = FILENAME
-// Single_Lookup.h
-//
-// = AUTHOR
-// Douglas C. Schmidt
-//
-// ============================================================================
-
-#ifndef _SINGLE_LOOKUP_H
-#define _SINGLE_LOOKUP_H
-
-#include "Options.h"
-#include "Search_Struct.h"
-
-class Single_Lookup : public Search_Struct
-{
- // = DESCRIPTION
- // Provides the client's single user lookup table abstraction.
-public:
- Single_Lookup (const char *usr_name);
- virtual ~Single_Lookup (void);
- virtual Protocol_Record *insert (const char *key_name,
- int max_len = MAXUSERIDNAMELEN) = 0;
- virtual Protocol_Record *get_next_entry (void);
- virtual Protocol_Record *get_each_entry (void);
-
-protected:
- Protocol_Record *prp_;
-};
-
-#endif /* _SINGLE_LOOKUP_H */