CGII/framework/include/libs/fltk/compat/FL/Fl_Pack.H
2018-05-17 15:50:03 +02:00

16 lines
288 B
C++

#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