summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Toggle_Button.H
blob: 6fc7bc60586f8fcb69264b4dc888ebae6c2f29bf (plain) (blame)
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