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

  1. // ------- netsrvr.h
  2.  
  3. #ifndef  NETSRVR_H
  4. #define  NETSRVR_H
  5.  
  6. #include "server.h"
  7. class CommPort;
  8.  
  9. class NetpackServer : public Server  {
  10.   int netpacks_active;
  11.   int port;
  12.   CommPort* commport; 
  13.   void startup();
  14.   void shutdown();
  15.   friend class Theatrix;
  16. public:
  17.   void check(Folder&);
  18.   void send(int);
  19. };
  20.  
  21. #endif
  22.