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

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