#include #include"intcell_des.h" IntCell::IntCell(int initValue){ value = initValue; } IntCell::~IntCell() { std::cout << "destructor: " << value << std::endl; } int IntCell::getValue() const { return value; } void IntCell::setValue(int newValue){ value = newValue; }