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

  1. // ----------- checkbox.h
  2.  
  3. #ifndef CHECKBOX_H
  4. #define CHECKBOX_H
  5.  
  6. #include "button.h"
  7.  
  8. class CheckBox : public Button    {
  9. public:
  10.     CheckBox(const char *lbl, int lf, int tp, DFWindow *par);
  11. };
  12.  
  13. #endif
  14.  
  15.