summaryrefslogtreecommitdiff
path: root/apps/drwho/Search_Struct.h
blob: c45dcbf60864dfb5b594829ffeb04d680b8ee2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    drwho
//
// = FILENAME
//    Search_Struct.h
//
// = AUTHOR
//    Douglas C. Schmidt
//
// ============================================================================

#ifndef _SEARCH_STRUCT_H
#define _SEARCH_STRUCT_H

#include "Protocol_Record.h"

class Search_Struct
{
  // = TITLE
  //   Provides an "Abstract Base Class" lookup table abstraction that
  //   stores and manipulates friend records.
public:
  Search_Struct (void);
  virtual ~Search_Struct (void);
  virtual int n_elems (void);

  virtual Protocol_Record *insert (const char *key_name,
                                   int max_len = MAXUSERIDNAMELEN) = 0;
  virtual Protocol_Record *get_next_entry (void) = 0;
  virtual Protocol_Record *get_each_entry (void) = 0;

protected:
  int count_;
};

#endif /* _SEARCH_STRUCT_H */