home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xsicon.h < prev    next >
Text File  |  1997-02-23  |  1KB  |  27 lines

  1. #ifndef __OOL_XSICON_H__
  2. #define __OOL_XSICON_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XStaticIcon                           */
  8. /*                       derived from: XStatic                               */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xstatic.h"
  14.  
  15.  
  16. class _export_ XStaticIcon: public XStatic
  17. {
  18.       friend void BuildChilds( HWND );
  19.    private:
  20.       XStaticIcon( const HWND hwnd):XStatic(hwnd){;}
  21.    public:
  22.       XStaticIcon( XWindow * w, const XRect * p=NULL, const LONG id = 0, const LONG style=ST_AUTOSIZE);
  23.       virtual ~XStaticIcon() { ;}
  24. };
  25.  
  26. #endif
  27.