diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-30 16:38:05 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-30 16:38:05 +0000 |
commit | 5af7c61184ca2bde839b5ae6e0e1cedb2f8c60d2 (patch) | |
tree | 943fc2af18934849b49f011e6d2c869e8fd1c9df /TAO/tao/GIOP.i | |
parent | 0dcf1e45b7f68badbf73fe94131179d47c82e0a5 (diff) | |
download | ATCD-5af7c61184ca2bde839b5ae6e0e1cedb2f8c60d2.tar.gz |
ChangeLogTag:Mon Mar 30 10:28:05 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/GIOP.i')
-rw-r--r-- | TAO/tao/GIOP.i | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/TAO/tao/GIOP.i b/TAO/tao/GIOP.i index 65c9b022704..f5a9319fa70 100644 --- a/TAO/tao/GIOP.i +++ b/TAO/tao/GIOP.i @@ -1,4 +1,7 @@ // This may look like C, but it's really -*- C++ -*- +// +// $Id$ +// ACE_INLINE TAO_GIOP_LocateRequestHeader::TAO_GIOP_LocateRequestHeader (void) @@ -16,7 +19,7 @@ TAO_GIOP_Invocation::get_value (CORBA::TypeCode_ptr tc, void *value, CORBA::Environment &env) { - (void) this->stream_.decode (tc, value, 0, env); + (void) this->inp_stream_.decode (tc, value, 0, env); } ACE_INLINE void @@ -24,11 +27,14 @@ TAO_GIOP_Invocation::put_param (CORBA::TypeCode_ptr tc, void *value, CORBA::Environment &env) { - (void) this->stream_.encode (tc, value, 0, env); + (void) this->out_stream_.encode (tc, value, 0, env); } +#if 0 +// @@ TODO ACE_INLINE CDR & TAO_GIOP_Invocation::stream (void) { return this->stream_; } +#endif /* 0 */ |