00001 00002 00003 00004 #ifndef MNCHECKBOX_H 00005 #define MNCHECKBOX_H 00006 00007 #include "MNStateButton.h" 00008 00009 // The debugger can't handle symbols more than 255 characters long. 00010 // STL often creates symbols longer than that. 00011 // When symbols are longer than 255 characters, the warning is disabled. 00012 #pragma warning(disable:4786) 00013 00028 class MNCheckBox : public MNStateButton 00029 { 00030 public: 00034 MNCheckBox( MNComponent *parent, LPSTR label, int x, int y, int style = 0, 00035 int type = BS_AUTOCHECKBOX, int width = AUTOSIZE, int height = AUTOSIZE ); 00036 }; 00037 00038 #endif
1.2.18