summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Tabs.H
blob: 202a7056eddd2e4af9423c9708fdca771151b5ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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