BWAPI
|
00001 #ifndef ITIMER_H 00002 #define ITIMER_H 00003 00007 struct ITimer 00008 { 00009 typedef long long value_type; 00010 virtual const value_type currentTime() = 0; 00011 virtual const value_type timeFrequency() = 0; 00012 protected: 00013 virtual ~ITimer() throw() 00014 {} 00015 friend class Timer; 00016 }; 00017 #endif