blob: 9725c3ebd96d90ada811147c8a298e03d93c88ce (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// drwho
//
// = FILENAME
// SMR_Client.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#ifndef _SMR_CLIENT_H
#define _SMR_CLIENT_H
#include "SM_Client.h"
class SMR_Client : public SM_Client
{
public:
SMR_Client (short port_number);
virtual ~SMR_Client (void);
};
#endif /* _SMR_CLIENT_H */
|