diff options
Diffstat (limited to 'ACE/apps/drwho/SMR_Client.h')
-rw-r--r-- | ACE/apps/drwho/SMR_Client.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ACE/apps/drwho/SMR_Client.h b/ACE/apps/drwho/SMR_Client.h new file mode 100644 index 00000000000..9725c3ebd96 --- /dev/null +++ b/ACE/apps/drwho/SMR_Client.h @@ -0,0 +1,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 */ |