summaryrefslogtreecommitdiff
path: root/examples/QOS/QOS_Event_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/QOS/QOS_Event_Handler.h')
-rw-r--r--examples/QOS/QOS_Event_Handler.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/examples/QOS/QOS_Event_Handler.h b/examples/QOS/QOS_Event_Handler.h
deleted file mode 100644
index c3915d6dbec..00000000000
--- a/examples/QOS/QOS_Event_Handler.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ACE_wrappers/examples/QOS/
-//
-// = FILENAME
-// QOS_Event_Handler.h
-//
-// = AUTHOR
-// Vishal Kachroo
-//
-// ============================================================================
-
-#ifndef QOS_EVENT_HANDLER_H
-#define QOS_EVENT_HANDLER_H
-
-#include "ace/Event_Handler.h"
-#include "ace/Reactor.h"
-
-#include "Read_Handler.h"
-
-ACE_RCSID(QOS_Event_Handler, 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
- // registers a handler for the READ events.
-
- private:
-
- ACE_Read_Handler read_handler_;
-
- };
-
-#endif /* QOS_EVENT_HANDLER_H */