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