home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / ISC365 / XONOFF.H < prev    next >
C/C++ Source or Header  |  1993-07-04  |  345b  |  23 lines

  1. #ifndef __XONOFF_H
  2. #define __XONOFF_H
  3.  
  4. #include "serial.h"; // SERIAL_PORT
  5.  
  6. const XON=  0x11;
  7. const XOFF= 0x13;
  8.  
  9.  
  10.  
  11. class XONOFF : public SERIAL_PORT {
  12.  
  13. protected:
  14.           virtual inline void flow_check(void);
  15.           virtual inline BOOLEAN flow_set(BYTE in_byte);
  16. public:
  17.  
  18.        XONOFF();
  19. };
  20.  
  21.  
  22.  
  23. #endif /* __XONOFF_H */