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