summaryrefslogtreecommitdiff
path: root/apps/drwho/PMC_Flo.h
blob: 88f534023bee98eba74e009c18bc991b7554d3da (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
33
34
35
36
37
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    drwho
//
// = FILENAME
//    PMC_Flo.h
//
// = AUTHOR
//    Douglas C. Schmidt
//
// ============================================================================

#if !defined (_PMC_FLO_H)
#define _PMC_FLO_H

#include "PM_Client.h"

class PMC_Flo : public PM_Client
{
  // = TITLE
  //   Provides the client's lookup table abstraction for `flo' users... 

public:
  PMC_Flo (void);
  virtual void process (void);

protected:
  virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
  virtual int encode (char *packet, int &total_bytes);
  virtual int decode (char *packet, int &total_bytes);
};

#endif /* _PMC_FLO_H */