lastseen.h 190 B

123456789101112131415
  1. #ifndef LASTSEEN_H
  2. #define LASTSEEN_H
  3. class LastSeen {
  4. private:
  5. int *tracker;
  6. int max;
  7. public:
  8. LastSeen(int max_nondups);
  9. ~LastSeen();
  10. bool seen_before(int this_one);
  11. };
  12. #endif