summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.i
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-08 03:11:08 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-08 03:11:08 +0000
commit5bb71ce4bfd4ec788b34a1e465b5fb10ec7e90b3 (patch)
tree35985dabecb288b528a95873d3fa3679bd07dd9a /TAO/tao/Invocation.i
parentc11ce37933a18f6f233b0c12b0674910832544f4 (diff)
downloadATCD-5bb71ce4bfd4ec788b34a1e465b5fb10ec7e90b3.tar.gz
ChangeLogTag:Fri Aug 7 21:39:26 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Invocation.i')
-rw-r--r--TAO/tao/Invocation.i15
1 files changed, 9 insertions, 6 deletions
diff --git a/TAO/tao/Invocation.i b/TAO/tao/Invocation.i
index 882d3233f0d..3bb8220b2cb 100644
--- a/TAO/tao/Invocation.i
+++ b/TAO/tao/Invocation.i
@@ -22,8 +22,9 @@ TAO_GIOP_Invocation::out_stream (void)
ACE_INLINE
TAO_GIOP_Twoway_Invocation::
TAO_GIOP_Twoway_Invocation (IIOP_Object *data,
- const char *operation)
- : TAO_GIOP_Invocation (data, operation),
+ const char *operation,
+ TAO_ORB_Core *orb_core)
+ : TAO_GIOP_Invocation (data, operation, orb_core),
inp_stream_ (CDR::DEFAULT_BUFSIZE)
{
}
@@ -53,8 +54,9 @@ TAO_GIOP_Twoway_Invocation::inp_stream (void)
ACE_INLINE
TAO_GIOP_Oneway_Invocation::
TAO_GIOP_Oneway_Invocation (IIOP_Object *data,
- const char *operation)
- : TAO_GIOP_Invocation (data, operation)
+ const char *operation,
+ TAO_ORB_Core *orb_core)
+ : TAO_GIOP_Invocation (data, operation, orb_core)
{
}
@@ -74,8 +76,9 @@ TAO_GIOP_Oneway_Invocation::invoke (CORBA::Environment &env)
ACE_INLINE
TAO_GIOP_Locate_Request_Invocation::
-TAO_GIOP_Locate_Request_Invocation (IIOP_Object *data)
- : TAO_GIOP_Invocation (data, 0),
+TAO_GIOP_Locate_Request_Invocation (IIOP_Object *data,
+ TAO_ORB_Core *orb_core)
+ : TAO_GIOP_Invocation (data, 0, orb_core),
inp_stream_ (CDR::DEFAULT_BUFSIZE)
{
}