blob: 7302371275a4929cd04a7e2f4d57209863b13d20 (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// drwho
//
// = FILENAME
// SL_Server.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#if !defined (_SL_SERVER_H)
#define _SL_SERVER_H
#include "Single_Lookup.h"
class SL_Server : public Single_Lookup
{
// = TITLE
// Provides the server's single user lookup table abstraction.
public:
SL_Server (const char *packet);
virtual Protocol_Record *insert (const char *key_name,
int max_len = MAXUSERIDNAMELEN);
virtual Protocol_Record *get_each_entry (void);
};
#endif /* _SL_SERVER_H */
|