home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / df3os2.zip / CLOCK.H < prev    next >
C/C++ Source or Header  |  1993-09-21  |  192b  |  18 lines

  1. // --------- clock.h
  2.  
  3. #ifndef CLOCK_H
  4. #define CLOCK_H
  5.  
  6. #include "dtimer.h"
  7.  
  8. class Clock    {
  9.     Timer clocktimer;
  10. public:
  11.     Clock();
  12.     void DispatchEvent();
  13. };
  14.  
  15. #endif
  16.  
  17.  
  18.