diff options
Diffstat (limited to 'ACE/apps/drwho/PMS_All.h')
-rw-r--r-- | ACE/apps/drwho/PMS_All.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ACE/apps/drwho/PMS_All.h b/ACE/apps/drwho/PMS_All.h new file mode 100644 index 00000000000..41459f57cbe --- /dev/null +++ b/ACE/apps/drwho/PMS_All.h @@ -0,0 +1,35 @@ +/* -*- C++ -*- */ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// drwho +// +// = FILENAME +// PMS_All.h +// +// = AUTHOR +// Douglas C. Schmidt +// +// ============================================================================ + +#ifndef _PMS_ALL_H +#define _PMS_ALL_H + +#include "PM_Server.h" + +class PMS_All : public PM_Server +{ + // = TITLE + // Provides the server's lookup table abstraction for `all' users... +public: + PMS_All (void); + +protected: + virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record); + virtual int encode (char *packet, int &total_bytes); + virtual int decode (char *packet, int &total_bytes); +}; + +#endif /* _PMS_ALL_H */ |