00001 00002 00003 00004 #ifndef RADIOBUTTON_H 00005 #define RADIOBUTTON_H 00006 00007 #include "StateButton.h" 00008 00009 namespace wkgl { 00010 00023 class RadioButton : public StateButton 00024 { 00025 public: 00029 RadioButton( const char *label, int x, int y, int type = BS_AUTORADIOBUTTON, 00030 int width = AUTOSIZE, int height = AUTOSIZE ); 00031 }; 00032 } 00033 #endif
1.2.18