summaryrefslogtreecommitdiff
path: root/FL/Fl_Int_Input.H
blob: 97648e5fadbba24bdbf69dde975da13c3c3ca6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef Fl_Int_Input_H
#define Fl_Int_Input_H

#include "Fl_Input.H"

class Fl_Int_Input : public Fl_Input {
public:
    Fl_Int_Input(int x,int y,int w,int h,const char *l = 0)
	: Fl_Input(x,y,w,h,l) {type(FL_INT_INPUT);}
};

#endif