home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / NSDEDIT2.ZIP / EDTKT06B.ZIP / TERM.HPP < prev    next >
C/C++ Source or Header  |  1994-08-25  |  2KB  |  36 lines

  1. /***********************************************************************
  2. *                                                                      *
  3. *  Definition file for TERM.CPP                                        *
  4. *                                                                      *
  5. *  Purpose : Settings of terminal emulation                            *
  6. *                                                                      *
  7. *  Author  : Peter Bloemendaal                                         *
  8. *            Brainbox systems +31-70-3523661                           *
  9. *  eMail   : internet -> bloemendaal@rullf2.LeidenUniv.nl              *
  10. *            fidonet  -> 2:281/908                                     *
  11. *                                                                      *
  12. *----------------------------------------------------------------------*
  13. *                                                                      *
  14. *                                                                      *
  15. * $Log: term.hpv $
  16. // Revision 1.1  1994/08/25  20:06:25  BRAINBOX
  17. // Initial revision
  18. //
  19. *                                                                      *
  20. ************************************************************************
  21. */
  22.  
  23. #define TERM_NONE      0x00
  24. #define TERM_SCREEN    0x01
  25. #define TERM_ANSI      0x02
  26. #define TERM_VT52      0x04
  27.  
  28. class Terminal
  29. {
  30.    protected:
  31.       unsigned int termmode ;
  32.    public:
  33.       void setTerm(unsigned int term) ;
  34.       unsigned int getTerm(void) ;
  35. } ;
  36.