home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / checkbox.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  372b  |  25 lines

  1. #ifndef _CHECKBOX_H_
  2. #define _CHECKBOX_H_
  3.  
  4. #ifndef _BUTTON_H_
  5. #include <pm/Button.h>
  6. #endif
  7.  
  8. @interface CheckBox : Button <Archiving>
  9. {
  10. }
  11.  
  12. - initWithId: (ULONG) anId andFlags: (ULONG) flags in: (Window *) parent;
  13.  
  14. /*
  15.  * Methods for protocol "Archiving"
  16.  */
  17.  
  18. - read: (TypedStream *) aStream;
  19. - write: (TypedStream *) aStream;
  20. - awake;
  21.  
  22. @end
  23.  
  24. #endif
  25.