summaryrefslogtreecommitdiff
path: root/FL/Fl_Simple_Counter.H
blob: bbb316e8109faae39ed3196c72b7b6d52bf4523c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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