home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / include / timesrvr.h < prev    next >
C/C++ Source or Header  |  1995-05-08  |  281b  |  19 lines

  1. // -------- timesrvr.h
  2.  
  3. #ifndef  TIMESRVR_H
  4. #define  TIMESRVR_H
  5.  
  6. #include "server.h"
  7.  
  8. class TimerServer : public Server  {
  9.   int tickno;
  10.   void startup();
  11.   void shutdown();
  12.   friend class Theatrix;
  13. public:
  14.   void check(Folder&);
  15.   static int newtick;
  16. };
  17.  
  18. #endif
  19.