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