Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / apps / drwho / SL_Server.h
blobc45649c8194fca6211ab565bdbf3f610be960201
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file SL_Server.h
7 * @author Douglas C. Schmidt
8 */
9 //=============================================================================
12 #ifndef _SL_SERVER_H
13 #define _SL_SERVER_H
15 #include "Single_Lookup.h"
17 /**
18 * @class SL_Server
20 * @brief Provides the server's single user lookup table abstraction.
22 class SL_Server : public Single_Lookup
24 public:
25 SL_Server (const char *packet);
26 virtual Protocol_Record *insert (const char *key_name,
27 int max_len = MAXUSERIDNAMELEN);
28 virtual Protocol_Record *get_each_entry ();
31 #endif /* _SL_SERVER_H */