#ifndef INTCELL_H #define INTCELL_H #include using namespace std; class IntCell{ public: IntCell(int initValue); int getValue() const; void setValue(int newValue); void print(ostream& out = cout); private: int value; }; // don't forget this semicolon!! #endif