summaryrefslogtreecommitdiff
path: root/apps/drwho/PMS_Flo.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/PMS_Flo.h')
-rw-r--r--apps/drwho/PMS_Flo.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/drwho/PMS_Flo.h b/apps/drwho/PMS_Flo.h
new file mode 100644
index 00000000000..e095b5f4ec6
--- /dev/null
+++ b/apps/drwho/PMS_Flo.h
@@ -0,0 +1,26 @@
+/* -*- C++ -*- */
+// $Id$
+
+/* Provides the server's lookup table abstraction for `flo' users... */
+
+#ifndef _FMS_FLO_H
+#define _FMS_FLO_H
+
+#include "PM_Server.h"
+
+class PMS_Flo : public PM_Server
+{
+protected:
+ virtual int encode (char *packet, int &total_bytes);
+ virtual int decode (char *packet, int &total_bytes);
+
+public:
+ PMS_Flo (void);
+};
+
+#ifdef __OPTIMIZE__
+inline
+PMS_Flo::PMS_Flo (void)
+{}
+#endif /* __OPTIMIZE__ */
+#endif