// clemtime.h // // by David Hershberger, 11-12-95 // // ClemTimer class is intended to allow the users of it to register a // callback which will happen every nth time we get a timer interrupt, // where n is configurable. It is specific to Clem's hardware.lib. #include "timer.h" #ifndef CLEMTIME_H #define CLEMTIME_H class ClemTimer: public virtual Timer{ protected: virtual void install_timer_handler(void (*)()); virtual void set_tick_interval() { tick_interval = .005; } public: virtual void close(); }; #endif // CLEMTIME_H