Revision 773,
318 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | #ifndef Fl_Group_H |
---|
2 | #define Fl_Group_H |
---|
3 | |
---|
4 | #include "Fl_Widget.H" |
---|
5 | #include <fltk/Group.h> |
---|
6 | |
---|
7 | class Fl_Group : public fltk::Group { |
---|
8 | |
---|
9 | public: |
---|
10 | Fl_Group(int x, int y, int w, int h, const char*l = 0) |
---|
11 | : fltk::Group(x,y,w,h,l) {begin();} |
---|
12 | static Fl_Group* current() {return (Fl_Group*)(fltk::Group::current());} |
---|
13 | }; |
---|
14 | |
---|
15 | #endif |
---|
16 | |
---|
Note: See
TracBrowser
for help on using the repository browser.