summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
commitb11770b30f8b58d20fe2d61846bfa3fc5354ee7e (patch)
tree6939cf1ed0a80ce8a3224d33f3d23c0e1b9a517f /TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
parent8fd5b8293423d91c699711bce0f3551cb8c20a69 (diff)
downloadATCD-b11770b30f8b58d20fe2d61846bfa3fc5354ee7e.tar.gz
Merged corba-env-clean branch.
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
index a7e61a655bf..b04cbe9f3b7 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
@@ -128,13 +128,13 @@ public:
* member of the collection.
* This encapsulates
*/
- virtual void for_each (TAO_ESF_Worker<PROXY> *worker,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void for_each (TAO_ESF_Worker<PROXY> *worker
+ TAO_ENV_ARG_DECL) = 0;
/// Insert a new element into the collection. The collection assumes
/// ownership of the element.
- virtual void connected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void connected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/**
* Insert an element into the collection. No errors can be raised
@@ -143,15 +143,15 @@ public:
* <proxy->_decr_refcnt()> if the element is already present in the
* collection.
*/
- virtual void reconnected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void reconnected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/// Remove an element from the collection.
- virtual void disconnected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void disconnected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/// The EC is shutting down, must release all the elements.
- virtual void shutdown (CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void shutdown (TAO_ENV_SINGLE_ARG_DECL) = 0;
};
// ****************************************************************