diff options
Diffstat (limited to 'TAO/tao/Pluggable.h')
-rw-r--r-- | TAO/tao/Pluggable.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/Pluggable.h b/TAO/tao/Pluggable.h index 4d9228cd64f..d57c7ac83b4 100644 --- a/TAO/tao/Pluggable.h +++ b/TAO/tao/Pluggable.h @@ -160,8 +160,8 @@ public: /// Parse a string containing a URL style IOR and return an /// MProfile. int make_mprofile (const char *ior, - TAO_MProfile &mprofile, - CORBA::Environment &ACE_TRY_ENV); + TAO_MProfile &mprofile + TAO_ENV_ARG_DECL); /// Initialize object and register with reactor. virtual int open (TAO_ORB_Core *orb_core) = 0; @@ -175,8 +175,8 @@ public: * actual transport protocol in use. */ virtual int connect (TAO_GIOP_Invocation *invocation, - TAO_Transport_Descriptor_Interface *desc, - CORBA::Environment &ACE_TRY_ENV) = 0; + TAO_Transport_Descriptor_Interface *desc + TAO_ENV_ARG_DECL) = 0; /// Initial set of connections to be established. virtual int preconnect (const char *preconnections) = 0; @@ -195,7 +195,7 @@ public: protected: /// Create a profile with a given endpoint. - virtual TAO_Profile *make_profile (CORBA::Environment &ACE_TRY_ENV) = 0; + virtual TAO_Profile *make_profile (TAO_ENV_SINGLE_ARG_DECL) = 0; /// Set the ORB Core pointer void orb_core (TAO_ORB_Core *orb_core); |