#ifndef MATHCELL_H #define MATHCELL_H #include #include "intcell.h" using namespace std; class MathCell : public IntCell{ public: MathCell(int initValue); void addToValue(int adder); void multValue(int multiplier); void increment(); void print(ostream& out = cout); }; #endif