summaryrefslogtreecommitdiff
path: root/examples/QOS/Receiver_QOS_Event_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/QOS/Receiver_QOS_Event_Handler.h')
-rw-r--r--examples/QOS/Receiver_QOS_Event_Handler.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/QOS/Receiver_QOS_Event_Handler.h b/examples/QOS/Receiver_QOS_Event_Handler.h
deleted file mode 100644
index 98982d22849..00000000000
--- a/examples/QOS/Receiver_QOS_Event_Handler.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ACE_wrappers/examples/QOS
-//
-// = FILENAME
-// Receiver_QOS_Event_Handler.h
-//
-// = AUTHOR
-// Vishal Kachroo <vishal@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef RECEIVER_QOS_EVENT_HANDLER_H
-#define RECEIVER_QOS_EVENT_HANDLER_H
-
-#include "ace/Event_Handler.h"
-#include "ace/Reactor.h"
-#include "ace/INET_Addr.h"
-#include "ace/SOCK_Dgram_Mcast.h"
-
-ACE_RCSID(Receiver_QOS_Event_Handler, Receiver_QOS_Event_Handler, "$Id$")
-
-class ACE_QOS_Event_Handler : public ACE_Event_Handler
-{
-public:
- // = Initialization and Termination methods.
- ACE_QOS_Event_Handler (void);
- // Constructor.
-
- ACE_QOS_Event_Handler::ACE_QOS_Event_Handler (const ACE_SOCK_Dgram_Mcast &dgram_mcast);
- // Constructor.
-
- ~ACE_QOS_Event_Handler (void);
- // Destructor.
-
- virtual ACE_HANDLE get_handle (void) const;
- // Override this to return the handle of the Dgram_Mcast
- // that we are using.
-
- virtual int handle_qos (ACE_HANDLE fd);
- // Handles a QOS event. Right now, just
- // prints a message.
-
- virtual int handle_input (ACE_HANDLE fd);
- // Handles a READ event.
-
-private:
- ACE_SOCK_Dgram_Mcast dgram_mcast_;
- ACE_INET_Addr remote_addr_;
-};
-
-#endif /* RECEIVER_QOS_EVENT_HANDLER_H */