class IntCell{ public: IntCell(int initValue); int getValue() const; void setValue(int newValue); private: int value; }; // don't forget this semicolon!!