The List Class struct Node { int number; Node *next; }; class List { private: Node *head; public: // we'll fill this in as we go }; // The semicolon is needed