home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / ISC366.ZIP / SERIAL / EXAMPLES / XONOFF.H < prev   
Text File  |  1993-09-01  |  340b  |  20 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. class XONOFF : public SERIAL_PORT {
  10.  
  11. protected:
  12.           virtual inline void flow_check(void);
  13.           virtual inline BOOLEAN flow_set(BYTE in_byte);
  14. public:
  15.  
  16.        XONOFF();
  17. };
  18.  
  19. #endif /* __XONOFF_H */
  20.