summaryrefslogtreecommitdiff
path: root/ace/Containers_T.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-17 20:22:38 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-17 20:22:38 +0000
commit864bdc2174ef996fa55ed5466ee6d7862873feda (patch)
tree874e6c77f07c532cbd4ba6da53db76fc9438ba8a /ace/Containers_T.h
parentae77e4c4d6c693f9c4fce9811a2b9a241477ea63 (diff)
downloadATCD-864bdc2174ef996fa55ed5466ee6d7862873feda.tar.gz
ChangeLog
Diffstat (limited to 'ace/Containers_T.h')
-rw-r--r--ace/Containers_T.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index a7ef1a07099..99c9d7035e6 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -681,33 +681,6 @@ protected:
template <class T> class ACE_DLList;
template <class T> class ACE_DLList_Iterator;
-class ACE_DLList_Node
-{
- // = TITLE
- // Base implementation of element in a DL list. Needed for
- // ACE_Double_Linked_List.
-
- friend class ACE_Double_Linked_List<ACE_DLList_Node>;
- friend class ACE_Double_Linked_List_Iterator<ACE_DLList_Node>;
-
-public:
- ACE_DLList_Node (void *&i,
- ACE_DLList_Node *n = 0,
- ACE_DLList_Node *p = 0);
- ~ACE_DLList_Node (void);
-
- ACE_ALLOC_HOOK_DECLARE;
- // Declare the dynamic allocation hooks.
-
- void *item_;
-
- ACE_DLList_Node *next_;
- ACE_DLList_Node *prev_;
-
-protected:
- ACE_DLList_Node (void);
-};
-
typedef ACE_Double_Linked_List<ACE_DLList_Node>
ACE_DLList_Base;
typedef ACE_Double_Linked_List_Iterator<ACE_DLList_Node>