summaryrefslogtreecommitdiff
path: root/ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h')
-rw-r--r--ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h39
1 files changed, 18 insertions, 21 deletions
diff --git a/ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h b/ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h
index 900595a6778..35b6cd281ba 100644
--- a/ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h
+++ b/ACE/examples/QOS/Simple/Receiver_QoS_Event_Handler.h
@@ -1,18 +1,15 @@
/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ACE_wrappers/examples/QOS
-//
-// = FILENAME
-// Receiver_QoS_Event_Handler.h
-//
-// = AUTHOR
-// Vishal Kachroo <vishal@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Receiver_QoS_Event_Handler.h
+ *
+ * $Id$
+ *
+ * @author Vishal Kachroo <vishal@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef RECEIVER_QOS_EVENT_HANDLER_H
#define RECEIVER_QOS_EVENT_HANDLER_H
@@ -27,25 +24,25 @@ class Receiver_QoS_Event_Handler : public ACE_Event_Handler
{
public:
// = Initialization and Termination methods.
+ /// Constructor.
Receiver_QoS_Event_Handler (void);
- // Constructor.
+ /// Constructor.
Receiver_QoS_Event_Handler (const ACE_SOCK_Dgram_Mcast_QoS &dgram_mcast_qos,
ACE_QoS_Session *qos_session);
- // Constructor.
+ /// Destructor.
~Receiver_QoS_Event_Handler (void);
- // Destructor.
+ /// Override this to return the handle of the Dgram_Mcast
+ /// that we are using.
virtual ACE_HANDLE get_handle (void) const;
- // Override this to return the handle of the Dgram_Mcast
- // that we are using.
+ /// Handles a READ event.
virtual int handle_input (ACE_HANDLE fd);
- // Handles a READ event.
+ /// Handles a QoS event.
virtual int handle_qos (ACE_HANDLE fd);
- // Handles a QoS event.
private:
ACE_SOCK_Dgram_Mcast_QoS dgram_mcast_qos_;