summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/compat/FL/Fl_Double_Window.H
blob: fec00af44a633b7641016539a9c558ef3d5cb370 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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