summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Pack.H
blob: ecd3846cb88ea658c5bd910fcb7233c1b2d90c88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef Fl_Pack_H
#define Fl_Pack_H

#include "Fl_Group.H"
#include <fltk/PackedGroup.h>

class Fl_Pack : public fltk::PackedGroup {

public:
  Fl_Pack(int x, int y, int w, int h, const char*l = 0)
    : fltk::PackedGroup(x,y,w,h,l) {begin();}

}; // Fl_Pack class

#endif