summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/SML_Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/drwho/SML_Client.h')
-rw-r--r--ACE/apps/drwho/SML_Client.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/ACE/apps/drwho/SML_Client.h b/ACE/apps/drwho/SML_Client.h
new file mode 100644
index 00000000000..56773b09b84
--- /dev/null
+++ b/ACE/apps/drwho/SML_Client.h
@@ -0,0 +1,33 @@
+/* -*- C++ -*- */
+
+//=============================================================================
+/**
+ * @file SML_Client.h
+ *
+ * $Id$
+ *
+ * @author Douglas C. Schmidt
+ */
+//=============================================================================
+
+
+#ifndef _SML_CLIENT_H
+#define _SML_CLIENT_H
+
+#include "SM_Client.h"
+#include "SML_Server.h"
+
+class SML_Client : public SM_Client
+{
+public:
+ SML_Client (void);
+ virtual ~SML_Client (void);
+ virtual int receive (int timeout = 0);
+ virtual int send (void);
+
+private:
+ SML_Server sml_server;
+ int packet_length;
+};
+
+#endif /* _SML_CLIENT_H */