00001 00010 #ifndef __HEURISTIC_COUNT_H__ 00011 #define __HEURISTIC_COUNT_H__ 00012 00013 #include "Heuristic.h" 00014 00019 class HeuristicCount : public Heuristic 00020 { 00021 public: 00027 HeuristicCount(SimulationStatus *status); 00028 00034 char * GetName() { return "Count"; } 00035 00043 float Analyze(unsigned int participant); 00044 00045 private: 00046 long lastTimes[MAX_PARTICIPANTS]; 00047 }; 00048 00049 #endif /* __HEURISTIC_COUNT_H__ */