CGII/framework/include/libs/fltk/compat/FL/Fl_Tabs.H
2018-05-17 16:01:02 +02:00

16 lines
247 B
C++

#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