home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / PROCESS.H < prev    next >
C/C++ Source or Header  |  1995-08-27  |  651b  |  34 lines

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: process.h 1.4 1995/08/13 03:21:12 teb Exp $ */
  8.  
  9.  
  10. #ifndef __PROCESS_H__
  11. #define __PROCESS_H__
  12. #define INCL_WIN
  13. #include <os2.h>
  14. #include<object.h>
  15.  
  16.  
  17. class TProcess : public TObject
  18. {
  19.  
  20.       HAB hAnchrBlk;
  21.       HMQ hMsgQue;
  22.    public:
  23.       TProcess (void);
  24.       HAB getAnchorBlock (void);
  25.       HMQ getMsgQue (void);
  26.       virtual const char *getClassName(void);
  27.  
  28. };
  29.  
  30.  
  31. #endif /* process.h */
  32.  
  33.  
  34.