summaryrefslogtreecommitdiff
path: root/TAO/tao/Asynch_Invocation.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Asynch_Invocation.i')
-rw-r--r--TAO/tao/Asynch_Invocation.i33
1 files changed, 17 insertions, 16 deletions
diff --git a/TAO/tao/Asynch_Invocation.i b/TAO/tao/Asynch_Invocation.i
index 43dfeb92b63..55c806bb4eb 100644
--- a/TAO/tao/Asynch_Invocation.i
+++ b/TAO/tao/Asynch_Invocation.i
@@ -1,4 +1,4 @@
-// This may look like C, but it's really -*- C++ -*-
+// This may look like C, but it's really -*- C++ -*-
//
// $Id$
//
@@ -11,12 +11,12 @@ TAO_GIOP_Asynch_Invocation::TAO_GIOP_Asynch_Invocation (
CORBA::Boolean argument_flag,
TAO_ORB_Core *orb_core
)
- : TAO_GIOP_Invocation (stub,
- operation,
- opname_len,
- argument_flag,
- orb_core),
- rd_ (0)
+ : TAO_GIOP_Invocation (stub,
+ operation,
+ opname_len,
+ argument_flag,
+ orb_core),
+ rd_ (0)
{
}
@@ -32,22 +32,23 @@ TAO_GIOP_Twoway_Asynch_Invocation::TAO_GIOP_Twoway_Asynch_Invocation (
CORBA::Boolean argument_flag,
TAO_ORB_Core *orb_core,
const TAO_Reply_Handler_Skeleton &reply_handler_skel,
- Messaging::ReplyHandler_ptr reply_handler_ptr
+ Messaging::ReplyHandler_ptr reply_handler_ptr
)
: TAO_GIOP_Asynch_Invocation (stub,
- operation,
- opname_len,
- argument_flag,
- orb_core)
+ operation,
+ opname_len,
+ argument_flag,
+ orb_core)
{
// New reply dispatcher on the heap, because
- // we will go out of scope and hand over the
+ // we will go out of scope and hand over the
// reply dispatcher to the ORB.
- // So this->rd_ is 0, because we do not need to
+ // So this->rd_ is 0, because we do not need to
// hold a pointer to it.
ACE_NEW (this->rd_,
- TAO_Asynch_Reply_Dispatcher (reply_handler_skel,
- reply_handler_ptr));
+ TAO_Asynch_Reply_Dispatcher (reply_handler_skel,
+ reply_handler_ptr,
+ orb_core));
}
#endif /* (TAO_HAS_AMI_CALLBACK == 1) || (TAO_HAS_AMI_POLLER == 1) == 0 */