home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / smxdemo / smxpp / siobus.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-16  |  904 b   |  42 lines

  1. /*************************************************************************
  2. *  Copyright (c) 1989-1992 Micro Digital Associates, Inc.
  3. *                  All Rights Reserved.
  4. *
  5. *  MODULE: SIOBUS.HPP
  6. *
  7. *  DESRIPTION:
  8. *           The SIOBus class is an abstract base class. It is used for
  9. *           communication with block and character devices.
  10. *
  11. *  AUTHOR: Rick Evans 
  12. *
  13. *
  14. *  UPDATE LOG
  15. *
  16. *************************************************************************/
  17. #ifndef  __SIOBUS_HPP
  18. #define __SIOBUS_HPP  1
  19.  
  20. //Class
  21. class SIOBus
  22. {
  23.  
  24. public:
  25.  
  26.    VOID_PTR       SIOXCBP;
  27.  
  28.  
  29.    //-------- Constructors --------
  30.    // abstract class no constructors.
  31.  
  32.  
  33.    //---------- Methods -----------
  34.    virtual  int         GetChar()=0;
  35.    virtual  BOOLEAN     PutChar( char achar )=0;
  36.  
  37.    //--------- Destructor ---------
  38.    // abstract class no destructors.
  39. };
  40. #endif
  41. //EOF
  42.