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 / passxchg.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-16  |  1.0 KB  |  46 lines

  1. /*************************************************************************
  2. *  Copyright (c) 1989-1992 Micro Digital Associates, Inc.
  3. *                  All Rights Reserved.
  4. *
  5. *  MODULE: PASSXCHG.HPP - Pass Exchange
  6. *
  7. *  DESRIPTION:
  8. *              This header file contains the class definition for the
  9. *              pass exchange class. This class is derived from
  10. *              the exchange class. The message class provides the
  11. *              send and receive methods.
  12. *
  13. *
  14. *  AUTHOR: Rick Evans 
  15. *
  16. *
  17. *  UPDATE LOG
  18. *
  19. *************************************************************************/
  20.  
  21. #ifndef __PASSXCHG_HPP
  22. #define __PASSXCHG_HPP     1
  23.  
  24. #include    <xtypes.h>
  25. #include    "exchange.hpp"
  26.  
  27. class PassXchg : public Xchg
  28. {
  29.  
  30. public:
  31.  
  32.    //---- constructors ------
  33.    PassXchg( word  tplimN, ... );
  34.    // copy constructor
  35.    PassXchg( const PassXchg& nxchg );
  36.     // c upgrade constructor
  37.    PassXchg( XCB_PTR p );
  38.  
  39.    //---- destructor ------
  40.    ~PassXchg();
  41. };
  42.  
  43. #endif
  44. //EOF
  45.  
  46.