summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor.i
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.i
parenta4bcc2228a7648aa728e732d4716c2ccf5777e9c (diff)
downloadATCD-7d6dda6cb267bdb5bd28295a97cda376d7723fbb.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Select_Reactor.i')
-rw-r--r--ace/Select_Reactor.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/ace/Select_Reactor.i b/ace/Select_Reactor.i
index 03def73b115..0c67b56c43b 100644
--- a/ace/Select_Reactor.i
+++ b/ace/Select_Reactor.i
@@ -246,3 +246,15 @@ ACE_Event_Tuple::ACE_Event_Tuple (ACE_Event_Handler* eh,
event_handler_ (eh)
{
}
+
+ACE_INLINE int
+ACE_Event_Tuple::operator== (const ACE_Event_Tuple &rhs) const
+{
+ return this->handle_ == rhs.handle_;
+}
+
+ACE_INLINE int
+ACE_Event_Tuple::operator!= (const ACE_Event_Tuple &rhs) const
+{
+ return !(*this == rhs);
+}