summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor_Base.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-02-13 08:20:11 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-02-13 08:20:11 +0000
commite649007a031854352d5ac15da9208a6c122022cf (patch)
tree1ddc5c061e1fcb649cf2dbcfe889bf74581d8d4f /ace/Select_Reactor_Base.h
parente90fdda374b0d9b003d7998346eba6aa10b6ded2 (diff)
downloadATCD-e649007a031854352d5ac15da9208a6c122022cf.tar.gz
ChangeLogTag:Sat Feb 12 20:35:23 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Select_Reactor_Base.h')
-rw-r--r--ace/Select_Reactor_Base.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/ace/Select_Reactor_Base.h b/ace/Select_Reactor_Base.h
index 5ff8c3b3d4d..721c9045ebc 100644
--- a/ace/Select_Reactor_Base.h
+++ b/ace/Select_Reactor_Base.h
@@ -59,15 +59,20 @@ class ACE_Export ACE_Event_Tuple
// An ACE_Event_Handler and its associated ACE_HANDLE.
//
// = DESCRIPTION
- // One ACE_Event_Handler is registered for one or more
- // ACE_HANDLE, in some points this information must be stored
- // explicitly. This structure provides a lightweight mechanism
- // to do so.
+ // One <ACE_Event_Handler> is registered for one or more
+ // <ACE_HANDLE>. At various points, this information must be
+ // stored explicitly. This class provides a lightweight
+ // mechanism to do so.
public:
ACE_Event_Tuple (void);
+ // Default constructor.
+
ACE_Event_Tuple (ACE_Event_Handler *eh,
ACE_HANDLE h);
+ // Constructor.
+
~ACE_Event_Tuple (void);
+ // Destructor.
int operator== (const ACE_Event_Tuple &rhs) const;
// Equality operator.
@@ -76,7 +81,10 @@ public:
// Inequality operator.
ACE_HANDLE handle_;
- ACE_Event_Handler* event_handler_;
+ // Handle.
+
+ ACE_Event_Handler *event_handler_;
+ // <ACE_Event_Handler> associated with the <ACE_HANDLE>.
};
class ACE_Export ACE_Select_Reactor_Notify : public ACE_Reactor_Notify