00001 00002 00003 00004 #ifndef MNRADIOBUTTON_H 00005 #define MNRADIOBUTTON_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 00026 class MNRadioButton : public MNStateButton 00027 { 00028 public: 00032 MNRadioButton( MNComponent *parent, LPSTR label, int x, int y, int style = 0, 00033 int type = BS_AUTORADIOBUTTON, int width = AUTOSIZE, 00034 int height = AUTOSIZE ); 00035 }; 00036 00037 #endif
1.2.18