diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-12-08 21:59:30 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-12-08 21:59:30 +0000 |
commit | 63165b00e2d667e39e15cf084128d94a563d484e (patch) | |
tree | 6939cf1ed0a80ce8a3224d33f3d23c0e1b9a517f /TAO/tao/Any.h | |
parent | 6579bccb3a3f22f882ef908ad5f7e1a65b00b133 (diff) | |
download | ATCD-63165b00e2d667e39e15cf084128d94a563d484e.tar.gz |
Merged corba-env-clean branch.
Diffstat (limited to 'TAO/tao/Any.h')
-rw-r--r-- | TAO/tao/Any.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h index 045f6f831f3..3d61cb26f42 100644 --- a/TAO/tao/Any.h +++ b/TAO/tao/Any.h @@ -282,9 +282,8 @@ public: /// For use along with <<= of a value of aliased type when the alias must /// be preserved. - void type (CORBA::TypeCode_ptr type, - CORBA_Environment &ACE_TRY_ENV = - TAO_default_environment ()); + void type (CORBA::TypeCode_ptr type + TAO_ENV_ARG_DECL_WITH_DEFAULTS); /** * Returns 0 if the Any has not been assigned a value, following the @@ -334,12 +333,12 @@ public: /// Encode the contents of the Any into <cdr> void _tao_encode (TAO_OutputCDR &cdr, - TAO_ORB_Core *orb_core, - CORBA::Environment &ACE_TRY_ENV); + TAO_ORB_Core *orb_core + TAO_ENV_ARG_DECL); /// Decode the <cdr> using the typecode in the Any object. - void _tao_decode (TAO_InputCDR &cdr, - CORBA::Environment &ACE_TRY_ENV); + void _tao_decode (TAO_InputCDR &cdr + TAO_ENV_ARG_DECL); #if !defined(__GNUC__) || __GNUC__ > 2 || __GNUC_MINOR__ >= 8 typedef CORBA_Any_ptr _ptr_type; |