* Convert string to integer. * * @return Integer value of string. */
| 409 | * @return Integer value of string. |
| 410 | */ |
| 411 | long toInt(void) const |
| 412 | { |
| 413 | return std::strtol(m_stdStr.c_str(), nullptr, 10); |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Convert string to float. |
no test coverage detected