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