summaryrefslogtreecommitdiff
path: root/ace/Utils/Templates/Intrusive_List_Node.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Utils/Templates/Intrusive_List_Node.inl')
-rw-r--r--ace/Utils/Templates/Intrusive_List_Node.inl25
1 files changed, 25 insertions, 0 deletions
diff --git a/ace/Utils/Templates/Intrusive_List_Node.inl b/ace/Utils/Templates/Intrusive_List_Node.inl
new file mode 100644
index 00000000000..e7f2c5ee3eb
--- /dev/null
+++ b/ace/Utils/Templates/Intrusive_List_Node.inl
@@ -0,0 +1,25 @@
+// $Id$
+
+template<class T> ACE_INLINE T*
+ACE_Intrusive_List_Node<T>::prev (void) const
+{
+ return this->prev_;
+}
+
+template<class T> ACE_INLINE void
+ACE_Intrusive_List_Node<T>::prev (T *x)
+{
+ this->prev_ = x;
+}
+
+template<class T> ACE_INLINE T*
+ACE_Intrusive_List_Node<T>::next (void) const
+{
+ return this->next_;
+}
+
+template<class T> ACE_INLINE void
+ACE_Intrusive_List_Node<T>::next (T *x)
+{
+ this->next_ = x;
+}