home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / df3os2.zip / RADIO.H < prev    next >
C/C++ Source or Header  |  1993-09-24  |  312b  |  18 lines

  1. // ----------- radio.h
  2.  
  3. #ifndef RADIO_H
  4. #define RADIO_H
  5.  
  6. #include "button.h"
  7.  
  8. class RadioButton : public Button    {
  9. public:
  10.     RadioButton(const char *lbl, int lf, int tp, DFWindow *par);
  11.     // -------- API messages
  12.     virtual void InvertButton();
  13.     virtual void PushButton();
  14. };
  15.  
  16. #endif
  17.  
  18.