Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / ACE / apps / drwho / SL_Client.h
blob53db17ba17bfec75e932bcac44dd61f9e6e01977
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file SL_Client.h
7 * @author Douglas C. Schmidt
8 */
9 //=============================================================================
12 #ifndef _SL_CLIENT_H
13 #define _SL_CLIENT_H
15 #include "Single_Lookup.h"
17 /**
18 * @class SL_Client
20 * @brief Provides the client's single user lookup table abstraction.
22 class SL_Client : public Single_Lookup
24 public:
25 SL_Client (const char *key_name);
26 virtual Protocol_Record *insert (const char *key_name,
27 int max_len = MAXUSERIDNAMELEN);
30 #endif /* _SL_CLIENT_H */