SpreadsheetCellTest.cpp
Upload User: gtl068a
Upload Date: 2007-01-25
Package Size: 233k
Code Size: 0k
Development Platform:

Visual C++

  1. #include "SpreadsheetCell.h"
  2. int main(int argc, char** argv)
  3. {
  4.   SpreadsheetCell myCell, anotherCell, aThirdCell;
  5.   myCell = anotherCell = aThirdCell;
  6.   myCell.operator=(anotherCell.operator=(aThirdCell));
  7.   SpreadsheetCell cell(4);
  8.   cell = cell; // self-assignment
  9.   return (0);
  10. }