blob: af8b384d70195ebce92ce2836f458b24512b61c9 (
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_Server.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#ifndef _SMR_SERVER_H
#define _SMR_SERVER_H
#include "SM_Server.h"
class SMR_Server : public SM_Server
{
public:
SMR_Server (short port_number);
~SMR_Server (void);
};
#endif /* _SMR_SERVER_H */
|