// Project: Singly_Linked_List.cbp // File : Node.h #ifndef NODE_H #define NODE_H #include template class Node { public: T Value; Node * Next; Node(T value); }; template Node::Node(T value) : Value(value), Next(NULL) {} #endif // NODE_H