#include "SpreadsheetCell.h" #include using namespace std; int main(int argc, char** argv) { SpreadsheetCell myCell, anotherCell; myCell.setValue(6); anotherCell.setValue(myCell.getValue()); cout << "cell 1: " << myCell.getValue() << endl; cout << "cell 2: " << anotherCell.getValue() << endl; return (0); }