summaryrefslogtreecommitdiff
path: root/FL/Fl_Int_Input.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Int_Input.H')
-rw-r--r--FL/Fl_Int_Input.H12
1 files changed, 12 insertions, 0 deletions
diff --git a/FL/Fl_Int_Input.H b/FL/Fl_Int_Input.H
new file mode 100644
index 000000000..97648e5fa
--- /dev/null
+++ b/FL/Fl_Int_Input.H
@@ -0,0 +1,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