summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-19 02:41:41 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-19 02:41:41 +0000
commit7d6dda6cb267bdb5bd28295a97cda376d7723fbb (patch)
tree955bd1efb0695a70e2f245caae7f96d9f7c5da61 /ace/Select_Reactor.h
parenta4bcc2228a7648aa728e732d4716c2ccf5777e9c (diff)
downloadATCD-7d6dda6cb267bdb5bd28295a97cda376d7723fbb.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Select_Reactor.h')
-rw-r--r--ace/Select_Reactor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Select_Reactor.h b/ace/Select_Reactor.h
index 0b896b56afb..485518f6d50 100644
--- a/ace/Select_Reactor.h
+++ b/ace/Select_Reactor.h
@@ -105,6 +105,12 @@ struct ACE_Event_Tuple
ACE_Event_Tuple (void);
ACE_Event_Tuple (ACE_Event_Handler* eh, ACE_HANDLE h);
+ int operator== (const ACE_Event_Tuple &rhs) const;
+ // Equality operator.
+
+ int operator!= (const ACE_Event_Tuple &rhs) const;
+ // Inequality operator.
+
ACE_HANDLE handle_;
ACE_Event_Handler* event_handler_;
};