summaryrefslogtreecommitdiff
path: root/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h')
-rw-r--r--examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h b/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h
deleted file mode 100644
index 35b9f3a19e7..00000000000
--- a/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// =====================================================================
-//
-// = LIBRARY
-// ACE_wrappers/examples/QOS
-//
-// = FILENAME
-// QoS_Signal_Handler.h
-//
-// = AUTHOR
-// Vishal Kachroo <vishal@cs.wustl.edu>
-//
-// =====================================================================
-
-#ifndef QOS_SIGNAL_HANDLER_H
-#define QOS_SIGNAL_HANDLER_H
-
-#include "ace/Event_Handler.h"
-#include "ace/QoS/QoS_Session.h"
-
-class QoS_Signal_Handler : public ACE_Event_Handler
-{
- // TITLE
- // This class Handles the SIGINT signal through the Reactor.
- // Useful to gracefully release QoS sessions.
-
-public:
-
- QoS_Signal_Handler (ACE_QoS_Session *qos_session);
- // constructor.
-
- int handle_signal(int signum, siginfo_t*,ucontext_t*);
- // Override this method to implement graceful shutdown.
-
-private:
-
- ACE_QoS_Session *qos_session_;
- // Session to be gracefully shutdown.
-
-};
-
-#endif /* QOS_SIGNAL_HANDLER_H */
-