mirror of
https://github.com/fltk/fltk.git
synced 2025-12-16 01:26:37 +08:00
13 lines
233 B
C++
13 lines
233 B
C++
#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
|