summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Tile.H
blob: 89799ee2f885984a7cd76548ee92196912ad1e13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef Fl_Tile_H
#define Fl_Tile_H

#include "Fl_Widget.H"
#include <fltk/TiledGroup.h>

class Fl_Tile : public fltk::TiledGroup {

public:
  Fl_Tile(int x, int y, int w, int h, const char*l = 0)
    : fltk::TiledGroup(x,y,w,h,l) {begin();}
};

#endif