summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/SL_Client.h
blob: 8dcd18dfc64c1044680094ec3fdaf2d798d5b5a0 (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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    SL_Client.h
 *
 *  $Id$
 *
 *  @author Douglas C. Schmidt
 */
//=============================================================================


#ifndef _SL_CLIENT_H
#define _SL_CLIENT_H

#include "Single_Lookup.h"

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

public:
  SL_Client (const char *key_name);
  virtual Protocol_Record *insert (const char *key_name,
                                   int max_len = MAXUSERIDNAMELEN);
};

#endif /* _SL_CLIENT_H */