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

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