home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xsem.h < prev    next >
C/C++ Source or Header  |  1997-08-12  |  853b  |  23 lines

  1. #ifndef __XSEMAPHORE_H__
  2. #define __XSEMAPHORE_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XSemaphore                            */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 3/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xobject.h"
  14.  
  15. class _export_ XSemaphore:public XObject
  16. {
  17.    protected:
  18.       ULONG hev;
  19.       XSemaphore() { hev = 0; }
  20. };
  21.  
  22. #endif
  23.