summaryrefslogtreecommitdiff
path: root/TAO/tao/NVList.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-23 22:58:14 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-23 22:58:14 +0000
commitece7c97713f6e464082b862f0d62b824bb833806 (patch)
tree83c650a9e12f9d1dc64b4e96b80490e97b7979f0 /TAO/tao/NVList.h
parent7d66bfe2ae7e8a4ca7ed86aa48a84cdd8e7c27b0 (diff)
downloadATCD-ece7c97713f6e464082b862f0d62b824bb833806.tar.gz
ACE try macros changes.
Diffstat (limited to 'TAO/tao/NVList.h')
-rw-r--r--TAO/tao/NVList.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/NVList.h b/TAO/tao/NVList.h
index dfb7dd3e040..7887a4c4cde 100644
--- a/TAO/tao/NVList.h
+++ b/TAO/tao/NVList.h
@@ -179,38 +179,38 @@ public:
// return the current number of elements in the list
CORBA_NamedValue_ptr add (CORBA::Flags,
- CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// add an element and just initialize the flags
CORBA_NamedValue_ptr add_item (const char *,
CORBA::Flags,
- CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// add an element and initialize its name and flags
CORBA_NamedValue_ptr add_value (const char *,
const CORBA::Any &,
CORBA::Flags,
- CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// initializes a value, name, and flags
CORBA_NamedValue_ptr add_item_consume (char *,
CORBA::Flags,
- CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// just like add_item. In addition, memory management of char * name is taken
// over by the NVList
CORBA_NamedValue_ptr add_value_consume (char *,
CORBA::Any_ptr,
CORBA::Flags,
- CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// just like add_value. In addition, the NVList controls the memory
// management of the char *name and Any *value parameter
- CORBA_NamedValue_ptr item (CORBA::ULong n, CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_NamedValue_ptr item (CORBA::ULong n, CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// retrieve the item at the nth location. Raises Bounds
// CORBA::Status
- void remove (CORBA::ULong n, CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ void remove (CORBA::ULong n, CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// remove element at index n. Raises Bounds
// The pseudo object static methods..
@@ -232,7 +232,7 @@ private:
// constructor - cannot be instantiated directly other than through the
// ORB::create_list method
- CORBA_NamedValue_ptr add_element (CORBA::Flags, CORBA_Environment &TAO_IN_ENV = TAO_default_environment ());
+ CORBA_NamedValue_ptr add_element (CORBA::Flags, CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
// helper to increase the list size. This is used by all the add_ methods of
// the NVList class