#ifndef LASTSEEN_H #define LASTSEEN_H #include class LastSeen { private: std::vector tracker; int max; public: LastSeen(int max); ~LastSeen(); int getmax(void); bool seen_before(int this_one); static int best_guess(int max); }; #endif