stringformat.h 559 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include "ThirdPartyHeadersBegin.h"
  3. #include <iomanip>
  4. #include <sstream>
  5. #include <stdio.h>
  6. #include <string>
  7. #include "ThirdPartyHeadersEnd.h"
  8. namespace tecplot
  9. {
  10. template <typename T>
  11. std::string ___4187(T ___4314, int precision = 6)
  12. {
  13. std::stringstream ss;
  14. ss << std::setprecision(precision) << ___4314;
  15. return ss.str();
  16. }
  17. }
  18. namespace tecplot
  19. {
  20. template <typename T>
  21. std::string toString(T ___4314) { return tecplot::___4187(___4314); }
  22. }
  23. template <typename T>
  24. std::string ___4187(T ___4314) { return tecplot::___4187(___4314); }