home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xuserwnd.h < prev    next >
Text File  |  1997-08-12  |  1KB  |  32 lines

  1. #ifndef __OOL_USERWND_H__
  2. #define __OOL_USERWND_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XUserWindow                           */
  8. /*                       derived from: XWindow                               */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14.  
  15. #include "xwindow.h"
  16.  
  17.  
  18. class XResource;
  19.  
  20. class _export_ XUserWindow: public XWindow
  21. {
  22.       friend MRESULT userProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
  23.    protected:
  24.       XUserWindow ( const LONG handle);
  25.       XUserWindow ( void );
  26.       XUserWindow ( const XWindow *);
  27.       virtual ~XUserWindow();
  28. };
  29.  
  30.  
  31. #endif
  32.