diff options
Diffstat (limited to 'TAO/tao/giop.i')
-rw-r--r-- | TAO/tao/giop.i | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/TAO/tao/giop.i b/TAO/tao/giop.i new file mode 100644 index 00000000000..8ea55a2d0bf --- /dev/null +++ b/TAO/tao/giop.i @@ -0,0 +1,17 @@ +// This may look like C, but it's really -*- C++ -*- + +ACE_INLINE void +GIOP::Invocation::get_value (CORBA::TypeCode_ptr tc, + void *value, + CORBA::Environment &env) +{ + (void) stream.decode (tc, value, 0, env); +} + +void +GIOP::Invocation::put_param (CORBA::TypeCode_ptr tc, + void *value, + CORBA::Environment &env) +{ + (void) stream.encode (tc, value, 0, env); +} |