CGII/framework/include/libs/fltk/compat/FL/Fl_Tabs.H

16 lines
262 B
C++
Raw Normal View History

2018-05-17 13:50:03 +00:00
#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