stringformat.h 559 B

12345678
  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 { template <typename T> std::string ___4187( T ___4314, int precision = 6) { std::stringstream ss; ss << std::setprecision(precision) << ___4314; return ss.str(); } } namespace tecplot { template <typename T> std::string toString(T ___4314) { return tecplot::___4187(___4314); } } template <typename T> std::string ___4187(T ___4314) { return tecplot::___4187(___4314); }