#ifndef COUNTER_HPP
#define COUNTER_HPP

// ΚΑΣΤΡΙΝΑΚΗ ΣΤΑΜΑΤΙΑ 12892
// ΠΟΛΥΚΑΡΠΟΣ ΜΕΡΕΝΙΔΗΣ 13169

class Counter{
private:

	int count;
	int count_max;
	bool overflow;
public:

//constractors
	Counter(int count_max=9999);

//member functions
	void reset();
	void incr1();
	void incr10();
	void incr100();
	
};

#endif




