summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-28 18:12:11 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-28 18:12:11 +0000
commit7b76173e64d726cd78b45e6630bfb4b8c7b5f057 (patch)
tree372663f1633772eeb66dc1cc047d4258400861c4
parent1078567177a6236e5b2c04ca15027cedc557d338 (diff)
downloadATCD-7b76173e64d726cd78b45e6630bfb4b8c7b5f057.tar.gz
ChangeLogTag:Tue Mar 28 12:13:12 2000 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLogs/ChangeLog-02a4
-rw-r--r--ChangeLogs/ChangeLog-03a4
-rw-r--r--ace/Containers_T.h32
4 files changed, 28 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c26111fbdc..8fb83e84ff6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Mar 28 12:13:12 2000 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * ace/Containers_T.h: Fixed the mismatching filename in preamble.
+
Tue Mar 28 12:06:31 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Array.h: Simply include "ace/Containers_T.h" would work.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 3c26111fbdc..8fb83e84ff6 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Tue Mar 28 12:13:12 2000 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * ace/Containers_T.h: Fixed the mismatching filename in preamble.
+
Tue Mar 28 12:06:31 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Array.h: Simply include "ace/Containers_T.h" would work.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3c26111fbdc..8fb83e84ff6 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,7 @@
+Tue Mar 28 12:13:12 2000 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * ace/Containers_T.h: Fixed the mismatching filename in preamble.
+
Tue Mar 28 12:06:31 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Array.h: Simply include "ace/Containers_T.h" would work.
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index 97606d4b42b..aac5f1115ac 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -7,7 +7,7 @@
// ace
//
// = FILENAME
-// Containers.h
+// Containers_T.h
//
// = AUTHOR
// Doug Schmidt
@@ -25,7 +25,7 @@
#endif /* ACE_LACKS_PRAGMA_ONCE */
// Need by ACE_DLList_Node.
-#include "ace/Containers.h"
+#include "ace/Containers.h"
class ACE_Allocator;
@@ -565,7 +565,7 @@ protected:
// Constructor
ACE_Double_Linked_List_Iterator_Base (const
- ACE_Double_Linked_List_Iterator_Base<T>
+ ACE_Double_Linked_List_Iterator_Base<T>
&iter);
// Copy constructor.
@@ -584,7 +584,7 @@ protected:
// the *current* element in the list. Return the address of the
// current item if there are still elements left , 0 if we run out
// of element.
-
+
T *do_advance (void);
// Advance to the next element in the list. Return the address of the
// next element if there are more, 0 otherwise.
@@ -643,17 +643,17 @@ public:
// If <dont_remove> equals 0, this function behaves like <advance>
// but return 0 (NULL) instead.
- // = STL-style iteration methods
+ // = STL-style iteration methods
ACE_Double_Linked_List_Iterator<T> & operator++ (void);
// Prefix advance.
-
+
ACE_Double_Linked_List_Iterator<T> operator++ (int);
// Postfix advance.
-
+
ACE_Double_Linked_List_Iterator<T> & operator-- (void);
// Prefix reverse.
-
+
ACE_Double_Linked_List_Iterator<T> operator-- (int);
// Postfix reverse.
@@ -674,7 +674,7 @@ class ACE_Double_Linked_List_Reverse_Iterator : public ACE_Double_Linked_List_It
// Iterate backwards over the double-linked list. This class
// provide an interface that let users access the internal
// element addresses directly, which seems to break the
- // encapsulation. Notice <class T> must delcare
+ // encapsulation. Notice <class T> must delcare
// ACE_Double_Linked_List<T>,
// ACE_Double_Linked_List_Iterator_Base <T> and
// ACE_Double_Linked_List_Iterator as friend classes and class T
@@ -699,24 +699,24 @@ public:
int advance (void);
// Move forward by one element in the list. Returns 0 when all the
// items in the list have been seen, else 1.
-
+
T* advance_and_remove (int dont_remove);
// Advance the iterator while removing the original item from the
// list. Return a pointer points to the original (removed) item.
// If <dont_remove> equals 0, this function behaves like <advance>
// but return 0 (NULL) instead.
- // = STL-style iteration methods
+ // = STL-style iteration methods
ACE_Double_Linked_List_Reverse_Iterator<T> & operator++ (void);
// Prefix advance.
-
+
ACE_Double_Linked_List_Reverse_Iterator<T> operator++ (int);
// Postfix advance.
ACE_Double_Linked_List_Reverse_Iterator<T> & operator-- (void);
// Prefix reverse.
-
+
ACE_Double_Linked_List_Reverse_Iterator<T> operator-- (int);
// Postfix reverse.
@@ -977,14 +977,14 @@ public:
// Returns 0 when all items have been seen, else 1.
T *next (void) const;
- // Delegates to ACE_Double_Linked_List_Iterator, except that whereas
+ // Delegates to ACE_Double_Linked_List_Iterator, except that whereas
// the Double_Linked_List version of next returns the node, this next
// returns the contents of the node
// DEPRECATED
int remove (void);
// Removes the current item (i.e., <next>) from the list.
-
+
void dump (void) const;
// Delegates to ACE_Double_Linked_List_Iterator.
@@ -1031,7 +1031,7 @@ public:
T *next (void) const;
// Delegates to ACE_Double_Linked_List_Iterator.
- // DEPRECATED
+ // DEPRECATED
int remove (void);
// Removes the current item (i.e., <next>) from the list.