| 42 | { |
| 43 | |
| 44 | template <typename T> std::string formatCoding(const std::string formatName, T value) |
| 45 | { |
| 46 | std::ostringstream stringStream; |
| 47 | stringStream << formatName; |
| 48 | if (formatName.find("(v)") != std::string::npos && formatName != "Calc") |
| 49 | stringStream << " -> u(" << value << ")"; |
| 50 | return stringStream.str(); |
| 51 | } |
| 52 | |
| 53 | void checkAndLog(std::shared_ptr<TreeItem> item, |
| 54 | const std::string & formatName, |