summaryrefslogtreecommitdiff
path: root/apps/drwho/HT_Server.h
blob: db312698012a41f53f7fef96f4fe5ca11e151f1e (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    HT_Server.h
 *
 *  $Id$
 *
 *  @author Douglas C. Schmidt
 */
//=============================================================================


#ifndef _HT_SERVER_H
#define _HT_SERVER_H

#include "Hash_Table.h"

/**
 * @class HT_Server
 *
 * @brief Provides the server's hash table abstraction.
 */
class HT_Server : public Hash_Table
{

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

#endif /* _HT_SERVER_H */