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();
  7.   SpreadsheetCell(double initialValue);
  8.   SpreadsheetCell(const string& initialValue);
  9.   SpreadsheetCell(const SpreadsheetCell &src);
  10.   void setValue(double inValue);
  11.   double getValue();
  12.   void setString(const string& inString);
  13.   string getString();
  14.  protected:
  15.   string doubleToString(double inValue);
  16.   double stringToDouble(const string& inString);
  17.   double mValue;
  18.   string mString;
  19. };