| 381 | } |
| 382 | |
| 383 | int StringConverter::getIntParameter(const std::string &msg, const std::string &header_field, const std::string ¶meter) { |
| 384 | const std::string val = StringConverter::getStringParameter(msg, header_field, parameter); |
| 385 | return val.empty() ? -1 : std::stoi(val); |
| 386 | } |
| 387 | |
| 388 | input::InputSystem StringConverter::getMSYSParameter(const std::string &msg, const std::string &header_field) { |
| 389 | const std::string val = StringConverter::getStringParameter(msg, header_field, "msys="); |
nothing calls this directly
no outgoing calls
no test coverage detected