summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Scroll.H
diff options
context:
space:
mode:
Diffstat (limited to 'fltk/fltk/compat/FL/Fl_Scroll.H')
-rw-r--r--fltk/fltk/compat/FL/Fl_Scroll.H15
1 files changed, 15 insertions, 0 deletions
diff --git a/fltk/fltk/compat/FL/Fl_Scroll.H b/fltk/fltk/compat/FL/Fl_Scroll.H
new file mode 100644
index 0000000..e677e31
--- /dev/null
+++ b/fltk/fltk/compat/FL/Fl_Scroll.H
@@ -0,0 +1,15 @@
+#ifndef Fl_Scroll_H
+#define Fl_Scroll_H
+
+#include "Fl_Group.H"
+#include <fltk/ScrollGroup.h>
+
+class Fl_Scroll : public fltk::ScrollGroup {
+
+public:
+ Fl_Scroll(int x, int y, int w, int h, const char*l = 0)
+ : fltk::ScrollGroup(x,y,w,h,l) {begin();}
+};
+
+#endif
+