#include "SpreadsheetCell.h" #include using namespace std; int main(int argc, char** argv) { SpreadsheetCell cell1; cell1.setValue(5.3); cout << cell1.getValue() << endl; return (0); }