List Iterator Implementation Plan Protected data pointer to current link template <typename T> class listiterator { protected: link * currLink; public: listiterator& operator ++(); } ;
template <typename T> class listiterator { protected: link * currLink; public: listiterator& operator ++(); } ;