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

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