summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/Priority_Reactor.i16
-rw-r--r--ace/Select_Reactor.i16
2 files changed, 16 insertions, 16 deletions
diff --git a/ace/Priority_Reactor.i b/ace/Priority_Reactor.i
index a93cc5a6301..6318deb79a0 100644
--- a/ace/Priority_Reactor.i
+++ b/ace/Priority_Reactor.i
@@ -1,18 +1,2 @@
/* -*- C++ -*- */
// $Id$
-
-ACE_INLINE
-ACE_Event_Tuple::ACE_Event_Tuple (void)
-: handle_ (ACE_INVALID_HANDLE),
- event_handler_ (0)
-{
-}
-
-ACE_INLINE
-ACE_Event_Tuple::ACE_Event_Tuple (ACE_Event_Handler* eh,
- ACE_HANDLE h)
-: handle_ (h),
- event_handler_ (eh)
-{
-}
-
diff --git a/ace/Select_Reactor.i b/ace/Select_Reactor.i
index 6b8f992b50c..91e318cc85a 100644
--- a/ace/Select_Reactor.i
+++ b/ace/Select_Reactor.i
@@ -230,3 +230,19 @@ ACE_Select_Reactor::size (void)
{
return this->handler_rep_.size ();
}
+
+
+ACE_INLINE
+ACE_Event_Tuple::ACE_Event_Tuple (void)
+: handle_ (ACE_INVALID_HANDLE),
+ event_handler_ (0)
+{
+}
+
+ACE_INLINE
+ACE_Event_Tuple::ACE_Event_Tuple (ACE_Event_Handler* eh,
+ ACE_HANDLE h)
+: handle_ (h),
+ event_handler_ (eh)
+{
+}