home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- * Copyright (c) 1989-1992 Micro Digital Associates, Inc.
- * All Rights Reserved.
- *
- * MODULE: EXCHANGE.HPP
- *
- * DESRIPTION:
- * This header file contains the class definition for the
- * base exchange class.
- *
- *
- * AUTHOR: Rick Evans
- *
- *
- * UPDATE LOG
- *
- *************************************************************************/
-
- #ifndef __EXCHANGE_HPP
- #define __EXCHANGE_HPP 1
-
- #include <xtypes.h>
- class message;
-
- class Xchg
- {
-
- public:
-
- //---- data members ------
- XCB_PTR XchgCBP;
-
-
- //---- friend classes -----
- friend class message;
-
-
- //---- methods -------
- BOOLEAN ClearQ();
- int QSize();
-
- };
-
- #endif
- //EOF
-