summaryrefslogtreecommitdiff
path: root/apps/drwho/CM_Client.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /apps/drwho/CM_Client.h
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'apps/drwho/CM_Client.h')
-rw-r--r--apps/drwho/CM_Client.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/apps/drwho/CM_Client.h b/apps/drwho/CM_Client.h
deleted file mode 100644
index 1e789633a5a..00000000000
--- a/apps/drwho/CM_Client.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// drwho
-//
-// = FILENAME
-// CM_Client.h
-//
-// = DESCRIPTION
-// Provides a virtual communcations layer for the client in the
-// drwho program.
-//
-// = AUTHOR
-// Douglas C. Schmidt
-//
-// ============================================================================
-
-#ifndef _CM_CLIENT_H
-#define _CM_CLIENT_H
-
-#include "Comm_Manager.h"
-
-class CM_Client : public Comm_Manager
-{
- // = TITLE
- // Provides a virtual communcations layer for the client in the
- // drwho program.
-public:
- // = Initialization and termination.
- CM_Client (void);
- // Constructor.
-
- virtual ~CM_Client (void);
- // Destructor.
-
- virtual int mux (char *packet, int &packet_length) = 0;
- virtual int demux (char *packet, int &packet_length) = 0;
- virtual int open (short port_number);
- virtual int receive (int timeout = 0);
- virtual int send (void);
-
-private:
- fd_set read_fd_;
- ACE_Time_Value time_out_;
- ACE_Time_Value *top_;
-};
-
-#endif /* _CM_CLIENT_H */