1 // $Id: Draw_Fl_Input.h 900 2009-08-13 20:00:45Z larry $
2 //
3 #ifndef Draw_Fl_Input_h
4 #define Draw_Fl_Input_h
5 
6 #include <FL/Fl_Input.H>
7 
8 class Draw_Fl_Input:public Fl_Input
9 {
10   public:
11   Draw_Fl_Input (int x, int y, int w, int h, const char *l = 0):
Fl_Input(x,y,w,h,l)12     Fl_Input (x, y, w, h, l) {
13     }
14     int handle (int e);
15 };
16 
17 #endif
18