summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.i
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2000-11-16 03:53:40 +0000
committerbala <balanatarajan@users.noreply.github.com>2000-11-16 03:53:40 +0000
commit27e2b811c7b844e0a6f90e5492557f6174318c4c (patch)
tree1fa47022dfcae4335356caaf9e3f235437f5af2d /TAO/tao/Invocation.i
parenta4c04baea35f52d73649d628a6e66c2abf779a15 (diff)
downloadATCD-27e2b811c7b844e0a6f90e5492557f6174318c4c.tar.gz
ChangeLogTag: Wed Nov 15 21:35:17 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Invocation.i')
-rw-r--r--TAO/tao/Invocation.i48
1 files changed, 26 insertions, 22 deletions
diff --git a/TAO/tao/Invocation.i b/TAO/tao/Invocation.i
index fde2229f09c..af4c16b81bf 100644
--- a/TAO/tao/Invocation.i
+++ b/TAO/tao/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$
//
@@ -6,17 +6,17 @@
ACE_INLINE IOP::ServiceContextList &
TAO_GIOP_Invocation::service_info (void)
{
- return this->op_details_.service_info ();
+ return this->op_details_.service_info ();
}
ACE_INLINE CORBA::ULong
-TAO_GIOP_Invocation::request_id (void)
+TAO_GIOP_Invocation::request_id (void)
{
return this->op_details_.request_id ();
}
ACE_INLINE TAO_OutputCDR &
-TAO_GIOP_Invocation::out_stream (void)
+TAO_GIOP_Invocation::out_stream (void)
{
return this->out_stream_;
}
@@ -25,7 +25,7 @@ ACE_INLINE void
TAO_GIOP_Invocation::restart_flag (CORBA::Boolean flag)
{
// Set the flag
- this->restart_flag_ = flag;
+ this->restart_flag_ = flag;
}
// ****************************************************************
@@ -35,18 +35,20 @@ TAO_GIOP_Synch_Invocation::TAO_GIOP_Synch_Invocation (
TAO_Stub *stub,
const char *operation,
CORBA::ULong opname_len,
+ CORBA::Boolean argument_flag,
TAO_ORB_Core *orb_core
)
- : TAO_GIOP_Invocation (stub,
- operation,
- opname_len,
+ : TAO_GIOP_Invocation (stub,
+ operation,
+ opname_len,
+ argument_flag,
orb_core),
- rd_ (orb_core,
- this->op_details_.service_info ())
+ rd_ (orb_core,
+ this->op_details_.service_info ())
{
}
-ACE_INLINE TAO_InputCDR &
+ACE_INLINE TAO_InputCDR &
TAO_GIOP_Synch_Invocation::inp_stream (void)
{
return this->rd_.reply_cdr ();
@@ -59,24 +61,26 @@ TAO_GIOP_Twoway_Invocation::TAO_GIOP_Twoway_Invocation (
TAO_Stub *stub,
const char *operation,
CORBA::ULong opname_len,
+ CORBA::Boolean argument_flag,
TAO_ORB_Core *orb_core
)
- : TAO_GIOP_Synch_Invocation (stub,
- operation,
- opname_len,
+ : TAO_GIOP_Synch_Invocation (stub,
+ operation,
+ opname_len,
+ argument_flag,
orb_core)
{
}
ACE_INLINE
-TAO_GIOP_Twoway_Invocation::~TAO_GIOP_Twoway_Invocation (void)
+TAO_GIOP_Twoway_Invocation::~TAO_GIOP_Twoway_Invocation (void)
{
}
// ****************************************************************
ACE_INLINE
-TAO_GIOP_Oneway_Invocation::~TAO_GIOP_Oneway_Invocation (void)
+TAO_GIOP_Oneway_Invocation::~TAO_GIOP_Oneway_Invocation (void)
{
}
@@ -91,16 +95,16 @@ TAO_GIOP_Oneway_Invocation::sync_scope (void)
ACE_INLINE
TAO_GIOP_Locate_Request_Invocation::
TAO_GIOP_Locate_Request_Invocation (TAO_Stub *stub,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Synch_Invocation (stub,
- 0,
- 0,
+ TAO_ORB_Core *orb_core)
+ : TAO_GIOP_Synch_Invocation (stub,
+ 0,
+ 0,
+ 0,
orb_core)
{
}
ACE_INLINE
-TAO_GIOP_Locate_Request_Invocation::~TAO_GIOP_Locate_Request_Invocation (void)
+TAO_GIOP_Locate_Request_Invocation::~TAO_GIOP_Locate_Request_Invocation (void)
{
}
-