blob: f538b851f1de9f6305447ec03db64498f14ccf7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file PMS_Flo.h
*
* @author Douglas C. Schmidt
*/
//=============================================================================
#ifndef _PMS_FLO_H
#define _PMS_FLO_H
#include "PM_Server.h"
/**
* @class PMS_Flo
*
* @brief Provides the server's lookup table abstraction for `flo' users...
*/
class PMS_Flo : public PM_Server
{
public:
PMS_Flo ();
protected:
virtual int encode (char *packet, int &total_bytes);
virtual int decode (char *packet, int &total_bytes);
};
#endif /* _PMS_FLO_H */
|