source: NonGTP/glut/FLTK/include/FL/Fl_Toggle_Button.H @ 814

Revision 814, 254 bytes checked in by gumbau, 18 years ago (diff)

Glut initial import used by Geometry modules

Line 
1#ifndef Fl_Toggle_Button_H
2#define Fl_Toggle_Button_H
3
4#include "Fl_Button.H"
5
6class Fl_Toggle_Button : public Fl_Button {
7public:
8    Fl_Toggle_Button(int X,int Y,int W,int H,const char *l=0)
9        : Fl_Button(X,Y,W,H,l) {type(FL_TOGGLE_BUTTON);}
10};
11
12#endif
Note: See TracBrowser for help on using the repository browser.