home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / kwclass.zip / KGROUPBX.HPP < prev    next >
C/C++ Source or Header  |  1994-04-18  |  547b  |  39 lines

  1. #ifndef _KGROUPBX_
  2. #define _KGROUPBX_
  3.  
  4. #ifndef _IGROUPBX_
  5.    #include <igroupbx.hpp>
  6. #endif
  7.  
  8. class KGroupBox : public IGroupBox
  9. {
  10.    public:
  11.       KGroupBox(unsigned long id,
  12.                 IWindow *wndParent,
  13.                 IWindow *wndOwner,
  14.                 const IRectangle &initial,
  15.                 const IResourceId &resText,
  16.                 const IGroupBox::Style style)
  17.         : IGroupBox(id, wndParent, wndOwner, initial, style)
  18.       {
  19.          setText(resText);
  20.       }
  21. };
  22.  
  23. #endif
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.