| 600 | } |
| 601 | |
| 602 | std::string DoubleToString(double value) |
| 603 | { |
| 604 | std::ostringstream pretty; |
| 605 | pretty.imbue(std::locale::classic()); |
| 606 | pretty.precision(DOUBLE_DECIMALS); |
| 607 | pretty << value; |
| 608 | return pretty.str(); |
| 609 | } |
| 610 | |
| 611 | std::string DoubleVecToString(const double * val, unsigned int size) |
| 612 | { |
no outgoing calls