summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-06 13:29:26 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-06 13:29:26 +0000
commit6470ac5b6f0e917908c5abd09c2836eb5a84bae9 (patch)
treeda33a77b8b562978690792c44f8c4ec9416cee80 /TAO/orbsvcs/orbsvcs/ESF
parent1fd7f1758f236eecfb71d11c66f47484dc0e8ec8 (diff)
downloadATCD-6470ac5b6f0e917908c5abd09c2836eb5a84bae9.tar.gz
Thu Jan 6 08:24:39 2005 Carlos O'Ryan <coryan@atdesk.com>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/ESF')
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h12
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i4
2 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h
index 26e3de1dc7d..001e4e88892 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h
@@ -16,7 +16,7 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#include "ace/Unbounded_Set_Ex.h"
+#include "ace/Unbounded_Set.h"
#include "ace/Containers.h"
/// A concrete proxy collection.
@@ -29,20 +29,20 @@ class TAO_ESF_Proxy_List
{
public:
/// A typedef for the underlying implementaiton class
- typedef ACE_Unbounded_Set_Ex<PROXY*> Implementation;
+ typedef ACE_Unbounded_Set<PROXY*> Implementation;
/// A typedef for the underlying iterator
- typedef ACE_Unbounded_Set_Ex_Iterator<PROXY*> Iterator;
+ typedef ACE_Unbounded_Set_Iterator<PROXY*> Iterator;
/// Constructor
TAO_ESF_Proxy_List (void);
/// Return the first element in the collection, or end() if there
/// are none
- ACE_Unbounded_Set_Ex_Iterator<PROXY*> begin (void);
+ ACE_Unbounded_Set_Iterator<PROXY*> begin (void);
/// Return one past the last element in the collection
- ACE_Unbounded_Set_Ex_Iterator<PROXY*> end (void);
+ ACE_Unbounded_Set_Iterator<PROXY*> end (void);
/// Return the number of elements in the collection
size_t size (void) const;
@@ -65,7 +65,7 @@ public:
private:
/// The underlying implementation object
- ACE_Unbounded_Set_Ex<PROXY*> impl_;
+ ACE_Unbounded_Set<PROXY*> impl_;
};
#if defined (__ACE_INLINE__)
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i
index f83bf2ad5a7..881283569ba 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i
@@ -1,12 +1,12 @@
// $Id$
-template<class PROXY> ACE_INLINE ACE_Unbounded_Set_Ex_Iterator<PROXY*>
+template<class PROXY> ACE_INLINE ACE_Unbounded_Set_Iterator<PROXY*>
TAO_ESF_Proxy_List<PROXY>::begin (void)
{
return this->impl_.begin ();
}
-template<class PROXY> ACE_INLINE ACE_Unbounded_Set_Ex_Iterator<PROXY*>
+template<class PROXY> ACE_INLINE ACE_Unbounded_Set_Iterator<PROXY*>
TAO_ESF_Proxy_List<PROXY>::end (void)
{
return this->impl_.end ();