Use =default for skeleton copy constructor
[ACE_TAO.git] / ACE / apps / drwho / PMS_Ruser.h
blob869b640912a4fee44957646c206ff0e137ee3838
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file PMS_Ruser.h
7 * @author Douglas C. Schmidt
8 */
9 //=============================================================================
12 #ifndef _PMS_RUSER_H
13 #define _PMS_RUSER_H
15 #include "PM_Server.h"
17 /**
18 * @class PMS_Ruser
20 * @brief Provides the server's lookup table abstraction for `ruser' users...
22 class PMS_Ruser : public PM_Server
24 public:
25 PMS_Ruser ();
27 protected:
28 virtual char *handle_protocol_entries (char *bp, Drwho_Node *hp);
29 virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
30 virtual int encode (char *packet, int &total_bytes);
31 virtual int decode (char *packet, int &total_bytes);
34 #endif /* _PMS_RUSER_H */