13 lines
254 B
C++
13 lines
254 B
C++
|
#ifndef Fl_Toggle_Button_H
|
||
|
#define Fl_Toggle_Button_H
|
||
|
|
||
|
#include "Fl_Button.H"
|
||
|
|
||
|
class Fl_Toggle_Button : public Fl_Button {
|
||
|
public:
|
||
|
Fl_Toggle_Button(int x,int y,int w,int h,const char *l=0)
|
||
|
: Fl_Button(x,y,w,h,l) {type(FL_TOGGLE_BUTTON);}
|
||
|
};
|
||
|
|
||
|
#endif
|