summaryrefslogtreecommitdiff
path: root/apps/drwho/CM_Client.h
diff options
context:
space:
mode:
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 */