source: NonGTP/glut/FLTK/include/FL/Fl_Value_Slider.H @ 814

Revision 814, 295 bytes checked in by gumbau, 18 years ago (diff)

Glut initial import used by Geometry modules

Line 
1#ifndef Fl_Value_Slider_H
2#define Fl_Value_Slider_H
3
4#include "Fl_Slider.H"
5#include <fltk/ValueSlider.h>
6
7class Fl_Value_Slider : public fltk::ValueSlider {
8public:
9  Fl_Value_Slider(int x, int y, int w, int h, const char*l = 0)
10    : fltk::ValueSlider(x,y,w,h,l) {set_vertical();}
11};
12
13#endif
14
Note: See TracBrowser for help on using the repository browser.