13 lines
231 B
C++
13 lines
231 B
C++
#ifndef Fl_Fill_Dial_H
|
|
#define Fl_Fill_Dial_H
|
|
|
|
#include "Fl_Dial.H"
|
|
|
|
class Fl_Fill_Dial : public Fl_Dial {
|
|
public:
|
|
Fl_Fill_Dial(int x,int y,int w,int h, const char *l = 0)
|
|
: Fl_Dial(x,y,w,h,l) {type(FL_FILL_DIAL);}
|
|
};
|
|
|
|
#endif
|