// File Name: countv1.h // Author: Xiannong Meng // Course: CS2330 // Date: March 15, 1997 // Problem statement: demonstrate how class is defined class CounterV1 { public: // the following section is public members // constructors CounterV1(); // Increment by one void Increment(); // Display value void Display(); private: // data members int value; // value of the counter };