summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Double_Window.H
diff options
context:
space:
mode:
Diffstat (limited to 'fltk/fltk/compat/FL/Fl_Double_Window.H')
-rw-r--r--fltk/fltk/compat/FL/Fl_Double_Window.H18
1 files changed, 18 insertions, 0 deletions
diff --git a/fltk/fltk/compat/FL/Fl_Double_Window.H b/fltk/fltk/compat/FL/Fl_Double_Window.H
new file mode 100644
index 0000000..fec00af
--- /dev/null
+++ b/fltk/fltk/compat/FL/Fl_Double_Window.H
@@ -0,0 +1,18 @@
+#ifndef Fl_Double_Window_H
+#define Fl_Double_Window_H
+
+#include "Fl_Window.H"
+
+class Fl_Double_Window : public Fl_Window {
+
+public:
+ Fl_Double_Window(int x, int y, int w, int h, const char*l = 0)
+ : Fl_Window(x,y,w,h,l) {set_double_buffer();}
+
+ Fl_Double_Window(int x, int y, const char*l = 0)
+ : Fl_Window(x,y,l) {set_double_buffer();}
+
+};
+
+#endif
+