summaryrefslogtreecommitdiff
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
commited26094d8e7aee3b4d66d4d8077b49269c8e4d63 (patch)
tree1ced62c391a2f4a4bd5952a53a4a8f1130122ca2
parent176949731eb819366c9dad3a22362b48f007991a (diff)
downloadATCD-ed26094d8e7aee3b4d66d4d8077b49269c8e4d63.tar.gz
restored current version of file into old RCS file
-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)
+{
+};
+