/*** An iterator class for the hash table that places collisions in adjacent locations. ***/ #ifndef _HASHITR_H #define _HASHITR_H #include "hashtable.h" class Hashitr { public: Hashitr(); Hashitr (Hashtable *); bool get_next(Type * &, int &);//the second parameter is position, to show which locations in the table are used private: Hashtable * table; int index; }; #endif //_HASHITR_H