home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xgroupbx.h
< prev
next >
Wrap
Text File
|
1997-02-23
|
1KB
|
27 lines
#ifndef __OOL_XGROUPBOX_H__
#define __OOL_XGROUPBOX_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XGroupBox */
/* derived from: XStatic */
/* last update: 12/96 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "xstatic.h"
class _export_ XGroupBox: public XStatic{
friend void BuildChilds( HWND );
private:
XGroupBox( const HWND hwnd):XStatic(hwnd) {;}
public:
XGroupBox(XWindow * owner, const XRect * rec, const char * string = "", const LONG id = 0);
virtual ~XGroupBox() {;}
};
#endif