38 StringConverter() =
default;
39 ~StringConverter() =
default;
41 bool convert(
const std::string& value,
bool default_value);
42 int64_t convert(
const std::string& value, int64_t default_value);
43 uint64_t convert(
const std::string& value, uint64_t default_value);
44 int32_t convert(
const std::string& value, int32_t default_value);
45 uint32_t convert(
const std::string& value, uint32_t default_value);
46 int16_t convert(
const std::string& value, int16_t default_value);
47 uint16_t convert(
const std::string& value, uint16_t default_value);
48 float convert(
const std::string& value,
float default_value);
49 double convert(
const std::string& value,
double default_value);