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