summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/SL_Server.h
blob: 5adc67d7e991b53e8b0f2b0a0ca63adffb57b429 (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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    SL_Server.h
 *
 *  @author Douglas C. Schmidt
 */
//=============================================================================


#ifndef _SL_SERVER_H
#define _SL_SERVER_H

#include "Single_Lookup.h"

/**
 * @class SL_Server
 *
 * @brief Provides the server's single user lookup table abstraction.
 */
class SL_Server : public Single_Lookup
{

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 */