source: NonGTP/glut/FLTK/include/FL/Fl_Double_Window.H @ 814

Revision 814, 362 bytes checked in by gumbau, 18 years ago (diff)

Glut initial import used by Geometry modules

Line 
1#ifndef Fl_Double_Window_H
2#define Fl_Double_Window_H
3
4#include "Fl_Window.H"
5
6class Fl_Double_Window : public Fl_Window {
7
8public:
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.