blob: cb1f1d0d80eddd685380e05e1cd89d32fa749087 (
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
// SML_Server.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#if !defined (_SML_SERVER_H)
#define _SML_SERVER_H
#include "SM_Server.h"
class SML_Server : public SM_Server
{
public:
SML_Server (void);
virtual ~SML_Server (void);
};
#endif /* _SML_SERVER_H */
|