home *** CD-ROM | disk | FTP | other *** search
/ HOT Scene Stuff / hotscenestuffzyklop1996.iso / demos / sunknown / timer.h < prev    next >
C/C++ Source or Header  |  1994-03-26  |  206b  |  17 lines

  1. // TIMER_C
  2.  
  3. #ifndef _TIMER_H
  4. #define _TIMER_H
  5.  
  6. class timer_C
  7. {
  8. public:
  9.   timer_C();
  10.   ~timer_C();
  11.   long readtimer(void);
  12.   long elapsed(unsigned long start,unsigned long stop);
  13. };
  14.  
  15. #endif
  16.  
  17.