00001 00033 #ifndef ABA_CPUTIMER_H 00034 #define ABA_CPUTIMER_H 00035 00036 #include "abacus/timer.h" 00037 00038 class ABA_CPUTIMER : public ABA_TIMER { 00039 public: 00040 00046 ABA_CPUTIMER(ABA_GLOBAL *glob); 00047 00056 ABA_CPUTIMER(ABA_GLOBAL *glob, long centiSeconds); 00057 00059 virtual ~ABA_CPUTIMER(); 00060 00061 private: 00062 static long clk_tck_; 00063 00078 virtual long theTime() const; 00079 }; 00080 #endif // ABA_CPUTIMER_H 00081