#ifndef NODE_CPP #define NODE_CPP #include #include "node.h" using namespace std; template Node::Node( const T& data ) { m_data = data; m_next = NULL; } template const T& Node::GetData() { return m_data; } template void Node::SetData( const T& data ) { m_data = data; } template Node* Node::GetNext() { return m_next; } template void Node::SetNext( Node* next ) { m_next = next; } #endif