diff options
Diffstat (limited to 'apps/drwho/PM_Server.h')
-rw-r--r-- | apps/drwho/PM_Server.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/apps/drwho/PM_Server.h b/apps/drwho/PM_Server.h deleted file mode 100644 index 2a355c8e262..00000000000 --- a/apps/drwho/PM_Server.h +++ /dev/null @@ -1,41 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// drwho -// -// = FILENAME -// PM_Server.h -// -// = AUTHOR -// Douglas C. Schmidt -// -// ============================================================================ - -#ifndef _PM_SERVER_H -#define _PM_SERVER_H - -#include "Protocol_Manager.h" - -class PM_Server : public Protocol_Manager -{ - // = TITLE - // Handle the server's lookup table abstraction. - -public: - PM_Server (void); - virtual ~PM_Server (void); - - virtual int encode (char *packet, int &total_bytes) = 0; - virtual int decode (char *packet, int &total_bytes) = 0; - virtual int process (void); - -protected: - virtual char *handle_protocol_entries (char *bp, - Drwho_Node *hp); - virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record); -}; - -#endif /* _PM_SERVER_H */ |