f9039b2ae2
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
13 lines
265 B
C++
13 lines
265 B
C++
#ifndef Fl_Simple_Counter_H
|
|
#define Fl_Simple_Counter_H
|
|
|
|
#include "Fl_Counter.H"
|
|
|
|
class Fl_Simple_Counter : public Fl_Counter {
|
|
public:
|
|
Fl_Simple_Counter(int x,int y,int w,int h, const char *l = 0)
|
|
: Fl_Counter(x,y,w,h,l) {type(FL_SIMPLE_COUNTER);}
|
|
};
|
|
|
|
#endif
|