topical media & game development

talk show tell print

professional-program-08-SpreadsheetCellThis-ambiguous-SpreadsheetCell.c

? / professional-program-08-SpreadsheetCellThis-ambiguous-SpreadsheetCell.c


  include <SpreadsheetCell.h>
  
  include <iostream>
  include <sstream>
  using namespace std;
  
  void SpreadsheetCell::setValue(double mValue)
  {
    mValue = mValue; // Ambiguous!
    mString = doubleToString(mValue);
  }
  
  double SpreadsheetCell::getValue()
  {
    return (mValue);
  }
  
  void SpreadsheetCell::setString(string inString)
  {
    mString = inString;
    mValue = stringToDouble(mString);
  }
  
  string SpreadsheetCell::getString()
  {
    return (mString);
  }
  
  string SpreadsheetCell::doubleToString(double inValue)
  {
    ostringstream ostr;
  
    ostr << inValue;
    return (ostr.str());
  }
  
  double SpreadsheetCell::stringToDouble(string inString)
  {
    double temp;
  
    istringstream istr(inString);
  
    istr >> temp;
    if (istr.fail() || !istr.eof()) {
      return (0);
    }
    return (temp);
  }
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.