summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/PMS_Usr.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/drwho/PMS_Usr.h')
-rw-r--r--ACE/apps/drwho/PMS_Usr.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/ACE/apps/drwho/PMS_Usr.h b/ACE/apps/drwho/PMS_Usr.h
new file mode 100644
index 00000000000..b38ea79453b
--- /dev/null
+++ b/ACE/apps/drwho/PMS_Usr.h
@@ -0,0 +1,35 @@
+/* -*- C++ -*- */
+
+//=============================================================================
+/**
+ * @file PMS_Usr.h
+ *
+ * $Id$
+ *
+ * @author Douglas C. Schmidt
+ */
+//=============================================================================
+
+
+#ifndef _PMS_USR_H
+#define _PMS_USR_H
+
+#include "PM_Server.h"
+
+/**
+ * @class PMS_Usr
+ *
+ * @brief Provides the client's lookup table abstraction for `Usr' users...
+ */
+class PMS_Usr : public PM_Server
+{
+
+public:
+ PMS_Usr (void);
+
+protected:
+ virtual int encode (char *packet, int &total_bytes);
+ virtual int decode (char *packet, int &total_bytes);
+};
+
+#endif /* _PMS_USR_H */