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

VC书籍

开发平台:

Visual C++

  1. #include <string>
  2. using std::string;
  3. class SpreadsheetCell
  4. {
  5.  public:
  6.   SpreadsheetCell(double initialValue);
  7.   SpreadsheetCell(string initialValue);
  8.   void setValue(double inValue);
  9.   double getValue();
  10.   void setString(string inString);
  11.   string getString();
  12.  protected:
  13.   string doubleToString(double inValue);
  14.   double stringToDouble(string inString);
  15.   double mValue;
  16.   string mString;
  17. };