#ifndef ACE_NODE_CPP #define ACE_NODE_CPP #include "ace/Node.h" #if defined (ACE_HAS_ALLOC_HOOKS) # include "ace/Malloc_Base.h" #endif /* ACE_HAS_ALLOC_HOOKS */ #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Node) template ACE_Node::ACE_Node (const T &i, ACE_Node *n) : next_ (n), item_ (i) { } template ACE_Node::ACE_Node (ACE_Node *n, int) : next_ (n) , item_ () { } template ACE_Node::ACE_Node (const ACE_Node &s) : next_ (s.next_), item_ (s.item_) { } ACE_END_VERSIONED_NAMESPACE_DECL #endif /* ACE_NODE_CPP */