Revision 773,
362 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Rev | Line | |
---|
[773] | 1 | #ifndef Fl_Double_Window_H |
---|
| 2 | #define Fl_Double_Window_H |
---|
| 3 | |
---|
| 4 | #include "Fl_Window.H" |
---|
| 5 | |
---|
| 6 | class Fl_Double_Window : public Fl_Window { |
---|
| 7 | |
---|
| 8 | public: |
---|
| 9 | Fl_Double_Window(int x, int y, int w, int h, const char*l = 0) |
---|
| 10 | : Fl_Window(x,y,w,h,l) {set_double_buffer();} |
---|
| 11 | |
---|
| 12 | Fl_Double_Window(int x, int y, const char*l = 0) |
---|
| 13 | : Fl_Window(x,y,l) {set_double_buffer();} |
---|
| 14 | |
---|
| 15 | }; |
---|
| 16 | |
---|
| 17 | #endif |
---|
| 18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.