summaryrefslogtreecommitdiff
path: root/FL/Fl_Toggle_Button.H
blob: 12da9a5777d8c8511346b366ee7f81eec6860da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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