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