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

  1. #ifndef __OOL_XRESWND_H__
  2. #define __OOL_XRESWND_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XResourceWindow                       */
  8. /*                       derived from: XWindow                               */
  9. /*                        last update: 2/98                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xwindow.h"
  14. #include "xreslib.h"
  15. #include "xres.h"
  16.  
  17. class _export_ XResourceWindow: public XWindow
  18. {
  19.       void CreateWindow(XWindow * , ULONG id, XResourceLibrary*);
  20.    public:
  21.       XResourceWindow(XWindow *, ULONG id);
  22.       XResourceWindow(XWindow *, XResource*);
  23. };
  24.  
  25.  
  26. #endif