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

  1. #ifndef _KCHECKBX_
  2. #define _KCHECKBX_
  3.  
  4. #ifndef _ICHECKBX_
  5.    #include <icheckbx.hpp>
  6. #endif
  7.  
  8. class KCheckBox : public ICheckBox
  9. {
  10.    public:
  11.       KCheckBox(unsigned long id,
  12.                 IWindow *wndParent,
  13.                 IWindow *wndOwner,
  14.                 const IRectangle &initial,
  15.                 const IResourceId &resText,
  16.                 const ICheckBox::Style style)
  17.         : ICheckBox(id, wndParent, wndOwner, initial, style)
  18.       {
  19.          setText(resText);
  20.       }
  21. };
  22.  
  23. #endif
  24.