summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/PMS_Usr.h
blob: b38ea79453b0311b299095635633f4b392a47943 (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
/* -*- 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 */