// Replace the operations/functions attributes #ifndef COUNTER_H #define COUNTER_H class Counter { public: Counter(int v=0):value(v){}//includes default constructor int getValue(){return value;} void countup(){value++;} void countdn(){value--;} private: int value; }; // Counter #endif