home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xpmthr.h < prev    next >
C/C++ Source or Header  |  1998-04-18  |  1KB  |  31 lines

  1. #ifndef __OOL_XPMTHREAD_H__
  2. #define __OOL_XPMTHREAD_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XPMThread                             */
  8. /*                       derived from: XProcess                              */
  9. /*                        last update: 9/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xthread.h"
  14.  
  15.  
  16. class _export_ XPMThread: public XThread
  17. {
  18.    private:
  19.       HMQ queue;
  20.       HAB hab;
  21.       QMSG messagequeue;
  22.       virtual void ThreadEntry( void );
  23.    public:
  24.       XPMThread( const LONG stack = 128000 ):XThread(stack) {;}
  25.       ~XPMThread();
  26. };
  27.  
  28.  
  29. #endif
  30.  
  31.