SpreadsheetCellTest.cpp
上传用户:gtl068a
上传日期:2007-01-25
资源大小:233k
文件大小:0k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #include "SpreadsheetCell.h"
  2. #include <iostream>
  3. using namespace std;
  4. int main(int argc, char** argv)
  5. {
  6.   SpreadsheetCell cell1;
  7.   cell1.setValue(5.3);
  8.   cout << cell1.getValue() << endl;
  9.   return (0);
  10. }