#include #include"intcell_best.h" using namespace std; int main() { IntCell x(5); // The standard way of constructing an object in C++ IntCell y = 7; // Also valid syntax. Compiler looks for a one-parameter constructor cout << "x: " << x.getValue() << endl; cout << "y: " << y.getValue() << endl << endl; x = y; cout << "x: " << x.getValue() << endl; cout << "y: " << y.getValue() << endl << endl; x.setValue(15); cout << "x: " << x.getValue() << endl; cout << "y: " << y.getValue() << endl; }