#pragma once class Counter { public: Counter(int start_value); void increment(); int get_value() const; private: int value; };