summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H
blob: 9afda08c6fa54484f7c7f9c078aa11e7e60284d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef Fl_Value_Slider_H
#define Fl_Value_Slider_H

#include "Fl_Slider.H"
#include <fltk/ValueSlider.h>

class Fl_Value_Slider : public fltk::ValueSlider {
public:
  Fl_Value_Slider(int x, int y, int w, int h, const char*l = 0)
    : fltk::ValueSlider(x,y,w,h,l) {set_vertical();}
};

#endif