summaryrefslogtreecommitdiff
path: root/ACE/ace/Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Node.cpp')
-rw-r--r--ACE/ace/Node.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/ACE/ace/Node.cpp b/ACE/ace/Node.cpp
new file mode 100644
index 00000000000..3520a8a0c6b
--- /dev/null
+++ b/ACE/ace/Node.cpp
@@ -0,0 +1,46 @@
+// $Id$
+
+#ifndef ACE_NODE_CPP
+#define ACE_NODE_CPP
+
+#include "ace/Node.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_ALLOC_HOOK_DEFINE(ACE_Node)
+
+template <class T>
+ACE_Node<T>::~ACE_Node (void)
+{
+}
+
+template <class T>
+ACE_Node<T>::ACE_Node (const T &i, ACE_Node<T> *n)
+ : next_ (n),
+ item_ (i)
+{
+ // ACE_TRACE ("ACE_Node<T>::ACE_Node");
+}
+
+template <class T>
+ACE_Node<T>::ACE_Node (ACE_Node<T> *n, int)
+ : next_ (n)
+{
+ // ACE_TRACE ("ACE_Node<T>::ACE_Node");
+}
+
+template <class T>
+ACE_Node<T>::ACE_Node (const ACE_Node<T> &s)
+ : next_ (s.next_),
+ item_ (s.item_)
+{
+ // ACE_TRACE ("ACE_Node<T>::ACE_Node");
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* ACE_NODE_CPP */