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