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

16 lines
273 B
C++
Raw Normal View History

2018-05-17 14:01:02 +00:00
#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