19 #ifndef GNSS_SDR_STRING_CONVERTER_H 20 #define GNSS_SDR_STRING_CONVERTER_H 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);
55 #endif // GNSS_SDR_STRING_CONVERTER_H Class that interprets the contents of a string and converts it into different types.