summaryrefslogtreecommitdiff
path: root/ace/Containers.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-18 03:54:13 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-18 03:54:13 +0000
commit499a4c0118f55807ea8f769b975e0d45dd697968 (patch)
tree1ced62c391a2f4a4bd5952a53a4a8f1130122ca2 /ace/Containers.i
parent0b3128181875c12f8e0ccb46bfd92548c3381227 (diff)
downloadATCD-499a4c0118f55807ea8f769b975e0d45dd697968.tar.gz
restored current version of file into old RCS file
Diffstat (limited to 'ace/Containers.i')
-rw-r--r--ace/Containers.i25
1 files changed, 25 insertions, 0 deletions
diff --git a/ace/Containers.i b/ace/Containers.i
index cfa1da318d3..45ac494805a 100644
--- a/ace/Containers.i
+++ b/ace/Containers.i
@@ -1 +1,26 @@
+/* -*- C++ -*- */
// $Id$
+
+ACE_INLINE
+ACE_DLList_Node::ACE_DLList_Node (void)
+ : item_ (0),
+ next_ (0),
+ prev_ (0)
+{
+}
+
+ACE_INLINE
+ACE_DLList_Node::ACE_DLList_Node (void *&i,
+ ACE_DLList_Node *n,
+ ACE_DLList_Node *p)
+ : item_ (i),
+ next_ (n),
+ prev_ (p)
+{
+}
+
+ACE_INLINE
+ACE_DLList_Node::~ACE_DLList_Node (void)
+{
+};
+