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