diff options
author | okellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-29 20:21:11 +0000 |
---|---|---|
committer | okellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-29 20:21:11 +0000 |
commit | 15f9b16afed320b4e581b8f61fee7d7fbf1aa9a8 (patch) | |
tree | fd798ba5478a08b4b6f842cb8515ed9776861f5f /TAO/tao/DynamicInterface/Request.inl | |
parent | 5e12d6686388ccadee1714b94ddee0cce6587bfd (diff) | |
download | ATCD-15f9b16afed320b4e581b8f61fee7d7fbf1aa9a8.tar.gz |
ChangeLogTag:Tue Jan 29 21:09:12 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
Diffstat (limited to 'TAO/tao/DynamicInterface/Request.inl')
-rw-r--r-- | TAO/tao/DynamicInterface/Request.inl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/DynamicInterface/Request.inl b/TAO/tao/DynamicInterface/Request.inl index d1bf04b3716..ad34953722a 100644 --- a/TAO/tao/DynamicInterface/Request.inl +++ b/TAO/tao/DynamicInterface/Request.inl @@ -66,42 +66,42 @@ ACE_INLINE CORBA_Any & CORBA_Request::add_in_arg (void) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_element (CORBA::ARG_IN TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_element (CORBA::ARG_IN ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE CORBA_Any & CORBA_Request::add_in_arg (const CORBA::Char *name) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_item (name, CORBA::ARG_IN TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_item (name, CORBA::ARG_IN ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE CORBA_Any & CORBA_Request::add_inout_arg (void) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_element (CORBA::ARG_INOUT TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_element (CORBA::ARG_INOUT ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE CORBA_Any & CORBA_Request::add_inout_arg (const CORBA::Char *name) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_item (name, CORBA::ARG_INOUT TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_item (name, CORBA::ARG_INOUT ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE CORBA_Any & CORBA_Request::add_out_arg (void) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_element (CORBA::ARG_OUT TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_element (CORBA::ARG_OUT ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE CORBA_Any & CORBA_Request::add_out_arg (const CORBA::Char *name) { ACE_DECLARE_NEW_CORBA_ENV; - return this->args_->add_item (name, CORBA::ARG_OUT TAO_ENV_ARG_PARAMETER)->any_; + return this->args_->add_item (name, CORBA::ARG_OUT ACE_ENV_ARG_PARAMETER)->any_; } ACE_INLINE void |