// This file contains the node class declaration. DO NOT change anything // in this file #ifndef __NODE_H_ #define __NODE_H_ class Node { friend class List; private: Node* next; int value; }; #endif