diff options
Diffstat (limited to 'apps/drwho/PMC_Usr.h')
-rw-r--r-- | apps/drwho/PMC_Usr.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/apps/drwho/PMC_Usr.h b/apps/drwho/PMC_Usr.h deleted file mode 100644 index 09edd37fa28..00000000000 --- a/apps/drwho/PMC_Usr.h +++ /dev/null @@ -1,38 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// drwho -// -// = FILENAME -// PMC_Usr.h -// -// = AUTHOR -// Douglas C. Schmidt -// -// ============================================================================ - -#if !defined (_PMC_USR_H) -#define _PMC_USR_H - -#include "PM_Client.h" - -class PMC_Usr : public PM_Client -{ - // = TITLE - // Provides the client's lookup table abstraction for `Usr' users... -public: - PMC_Usr (char *usr_name); - virtual void process (void); - -protected: - virtual int encode (char *packet, int &total_bytes); - virtual int decode (char *packet, int &total_bytes); - -private: - char *usr_name; -}; - -#endif /* _PMC_USR_H */ |