#include #include "counter.h" using std::cout, std::endl; int main() { Counter c(0); c.increment(); cout << c.get_value() << endl; return 0; }