// Project LinkedList // File Node.h // Data members are item (the payload) // and next (pointer to the next node). class Node { private: int item; Node *next; public: Node(); Node(int an_item); int get_item(); Node *get_next(); void set_next(Node *); };