Function for converting formatted character string to double
| 179 | |
| 180 | // Function for converting formatted character string to double |
| 181 | static double parseFormattedDouble(const char* formattedString) { |
| 182 | return std::stod(formattedString); |
| 183 | } |
| 184 | |
| 185 | static int lidardouble2string(char* string, double value) { |
| 186 | int len; |