#ifndef LASTSEEN_H
#define LASTSEEN_H

class LastSeen {
private:
  int *tracker;
  int max;

public:
  LastSeen(int max_nondups);
  ~LastSeen();
  bool seen_before(int this_one);
};

#endif