summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/HT_Client.h
blob: 4d3f13c92bf230c08aea0f74ab4ae1f98c5bc290 (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
/* -*- C++ -*- */

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


#ifndef _HT_CLIENT_H
#define _HT_CLIENT_H

#include "Hash_Table.h"

/**
 * @class HT_Client
 *
 * @brief Provides the client's hash table abstraction.
 */
class HT_Client : public Hash_Table
{
public:
  virtual Protocol_Record *insert (const char *key_name,
                                   int max_len = MAXUSERIDNAMELEN);
};

#endif /* _HT_CLIENT_H */