/* -*- C++ -*- */ //============================================================================= /** * @file PMS_All.h * * @author Douglas C. Schmidt */ //============================================================================= #ifndef _PMS_ALL_H #define _PMS_ALL_H #include "PM_Server.h" /** * @class PMS_All * * @brief Provides the server's lookup table abstraction for `all' users... */ class PMS_All : public PM_Server { 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 */