#ifndef _LIST_ITER_H #define _LIST_ITER_H #include "list.h" #include class ListIter { public: ListIter(List &l); void next(); Node* lookup(); int done(); Type value(); private: Node *current; }; #endif //_LIST_ITER_h