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