source: NonGTP/FLTK/include/FL/Fl_Scroll.H @ 773

Revision 773, 264 bytes checked in by gumbau, 18 years ago (diff)

FLTK imported to SVN repository to be linked agains the GeoTool? application

Line 
1#ifndef Fl_Scroll_H
2#define Fl_Scroll_H
3
4#include "Fl_Group.H"
5#include <fltk/ScrollGroup.h>
6
7class Fl_Scroll : public fltk::ScrollGroup {
8
9public:
10  Fl_Scroll(int x, int y, int w, int h, const char*l = 0)
11    : fltk::ScrollGroup(x,y,w,h,l) {begin();}
12};
13
14#endif
15
Note: See TracBrowser for help on using the repository browser.